diff options
Diffstat (limited to 'server-beta/main.lua')
-rw-r--r-- | server-beta/main.lua | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/server-beta/main.lua b/server-beta/main.lua deleted file mode 100644 index c674cab6..00000000 --- a/server-beta/main.lua +++ /dev/null @@ -1,19 +0,0 @@ -local currentPath = debug.getinfo(1, 'S').source:sub(2) -local rootPath = currentPath:gsub('[/\\]*[^/\\]-$', '') -dofile(rootPath .. '/platform.lua') -local fs = require 'bee.filesystem' -ROOT = fs.path(rootPath) -LANG = LANG or 'en-US' - -collectgarbage('generational', 10, 50) - -log = require 'log' -log.init(ROOT, ROOT / 'log' / 'service.log') -log.info('Lua Lsp startup, root: ', ROOT) -log.debug('ROOT:', ROOT:string()) - ---loadfile(rootPath .. '/debugger.lua')'wait' -dofile(rootPath .. '/debugger.lua') - -local service = require 'service' -service.start() |