blob: 4ecd4f4af202a2404c81bf7c089e34cbfbca0f81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
local currentPath = debug.getinfo(1, 'S').source:sub(2)
local rootPath = currentPath:gsub('[/\\]*[^/\\]-$', '')
loadfile((rootPath == '' and '.' or rootPath) .. '/platform.lua')('script')
local fs = require 'bee.filesystem'
ROOT = fs.path(rootPath)
LANG = LANG or 'en-US'
debug.setcstacklimit(200)
collectgarbage('generational', 10, 100)
--collectgarbage('incremental', 120, 120, 0)
log = require 'log'
log.init(ROOT, ROOT / 'log' / 'service.log')
log.info('Lua Lsp startup, root: ', ROOT)
log.debug('ROOT:', ROOT:string())
xpcall(dofile, log.debug, rootPath .. '/debugger.lua')
local service = require 'service'
-- TODO
--ALL_DEEP = true
service.start()
|