summaryrefslogtreecommitdiff
path: root/server-beta/main.lua
blob: c674cab6766671b2adc5e18b715e23a5d10ab3d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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()