diff options
Diffstat (limited to 'main.lua')
-rw-r--r-- | main.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main.lua b/main.lua new file mode 100644 index 00000000..6a6fba2d --- /dev/null +++ b/main.lua @@ -0,0 +1,23 @@ +local currentPath = debug.getinfo(1, 'S').source:sub(2) +local rootPath = currentPath:gsub('[/\\]*[^/\\]-$', '') +loadfile(rootPath .. '/platform.lua')('script') +local fs = require 'bee.filesystem' +ROOT = fs.current_path() / rootPath +LANG = LANG or 'en-US' + +--collectgarbage('generational') +collectgarbage("setpause", 100) +collectgarbage("setstepmul", 1000) + +log = require 'log' +log.init(ROOT, ROOT / 'log' / 'service.log') +log.info('Lua Lsp startup, root: ', ROOT) +log.debug('ROOT:', ROOT:string()) +ac = {} + +--xpcall(dofile, log.debug, rootPath .. '/debugger.lua') +require 'utility' +local service = require 'service' +local session = service() + +session:listen() |