2023-11-05 04:50:11 +00:00
|
|
|
import fs from 'fs'
|
|
|
|
import { pathToFileURL } from 'url'
|
2022-10-17 07:52:55 +00:00
|
|
|
import config from './base/config.mjs'
|
|
|
|
|
|
|
|
export function start(http, port, ctx) {
|
|
|
|
config.sources[1].store = ctx.config
|
|
|
|
|
|
|
|
return import('./api/server.mjs')
|
|
|
|
.then(function(module) {
|
|
|
|
let server = new module.default(http, port, ctx)
|
|
|
|
return server.run()
|
|
|
|
})
|
|
|
|
}
|
2023-11-05 04:50:11 +00:00
|
|
|
|
|
|
|
if (import.meta.url === pathToFileURL(process.argv[1]).href) {
|
|
|
|
import('service-core').then(core => {
|
|
|
|
const port = 4120
|
|
|
|
|
|
|
|
var core = new core.ServiceCore('nfp_moe', 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()
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|