diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 17 |
1 files changed, 3 insertions, 14 deletions
@@ -1,8 +1,5 @@ -dofile("local_config.lua") -dofile("config.lua") - -- Compile server code and remove original .lua files. --- This only happens the first time afer the .lua files are uploaded. +-- This only happens the first time after the .lua files are uploaded. local compileAndRemoveIfNeeded = function(f) if file.open(f) then file.close() @@ -14,16 +11,8 @@ local compileAndRemoveIfNeeded = function(f) end local serverFiles = { - 'httpserver.lua', - 'httpserver-b64decode.lua', - 'httpserver-basicauth.lua', - 'httpserver-conf.lua', - 'httpserver-connection.lua', - 'httpserver-error.lua', - 'httpserver-header.lua', - 'httpserver-request.lua', - 'httpserver-static.lua', - 'telnetserver.lua' + 'microwire.lua', + 'lmx2487lib.lua' } for i, f in ipairs(serverFiles) do compileAndRemoveIfNeeded(f) end |