35 lines
761 B
JavaScript
35 lines
761 B
JavaScript
import fs from 'fs'
|
|
import { pathToFileURL } from 'url'
|
|
|
|
export function start(http, port, ctx) {
|
|
return import('./api/server.mjs')
|
|
.then(function(module) {
|
|
let server = new module.default(http, port, ctx)
|
|
return server.run()
|
|
})
|
|
}
|
|
|
|
if (import.meta.url === pathToFileURL(process.argv[1]).href) {
|
|
import('service-core').then(core => {
|
|
const port = 4510
|
|
|
|
var core = new core.ServiceCore('distributer', import.meta.url, port, '')
|
|
|
|
let config = {
|
|
frontend: {
|
|
url: 'http://localhost:' + port
|
|
}
|
|
}
|
|
|
|
try {
|
|
config = JSON.parse(fs.readFileSync('./config.json'))
|
|
} catch {}
|
|
|
|
config.port = port
|
|
|
|
core.setConfig(config)
|
|
core.init({ start }).then(function() {
|
|
return core.run()
|
|
})
|
|
})
|
|
}
|