From f43025f23703924e5ffd2b0112652bff3db94cd2 Mon Sep 17 00:00:00 2001 From: Marcos Kirsch Date: Sat, 28 Feb 2015 16:40:36 -0600 Subject: [PATCH] init shows new way of starting server --- init.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 1cd7a0b..ed5f5f9 100644 --- a/init.lua +++ b/init.lua @@ -12,9 +12,8 @@ tmr.alarm(0, 3000, 1, function() else tmr.stop(0) print('IP: ',wifi.sta.getip()) - -- Uncomment to automatically start the server. - -- require("httpserver") - -- server = httpserver.start(80, 10) + -- Uncomment to automatically start the server in port 80 + -- dofile("httpserver.lc")(80, 10) end end)