2021-09-20 02:52:08 +02:00
|
|
|
const optionDefinitions = [
|
|
|
|
{ name: 'config', alias: 'c', type: String },
|
|
|
|
{ name: 'metadata', alias: 'm', type: String },
|
2022-03-17 14:18:39 +01:00
|
|
|
{ name: 'port', alias: 'p', type: String },
|
2022-05-15 00:23:22 +02:00
|
|
|
{ name: 'host', alias: 'h', type: String },
|
|
|
|
{ name: 'source', alias: 's', type: String }
|
2021-09-20 02:52:08 +02:00
|
|
|
]
|
|
|
|
|
2022-07-07 01:56:13 +02:00
|
|
|
const commandLineArgs = require('./server/libs/commandLineArgs')
|
2021-09-20 02:52:08 +02:00
|
|
|
const options = commandLineArgs(optionDefinitions)
|
|
|
|
|
2021-09-20 02:22:35 +02:00
|
|
|
const Path = require('path')
|
|
|
|
process.env.NODE_ENV = 'production'
|
|
|
|
|
|
|
|
const server = require('./server/Server')
|
2021-09-23 03:40:35 +02:00
|
|
|
|
2021-09-20 02:22:35 +02:00
|
|
|
global.appRoot = __dirname
|
|
|
|
|
2021-09-20 02:52:08 +02:00
|
|
|
var inputConfig = options.config ? Path.resolve(options.config) : null
|
|
|
|
var inputMetadata = options.metadata ? Path.resolve(options.metadata) : null
|
|
|
|
|
|
|
|
const PORT = options.port || process.env.PORT || 3333
|
2023-01-22 00:53:10 +01:00
|
|
|
const HOST = options.host || process.env.HOST
|
2021-09-20 02:52:08 +02:00
|
|
|
const CONFIG_PATH = inputConfig || process.env.CONFIG_PATH || Path.resolve('config')
|
|
|
|
const METADATA_PATH = inputMetadata || process.env.METADATA_PATH || Path.resolve('metadata')
|
2023-01-22 00:53:10 +01:00
|
|
|
const SOURCE = options.source || process.env.SOURCE || 'debian'
|
2023-01-22 15:05:25 +01:00
|
|
|
|
2022-10-01 23:07:30 +02:00
|
|
|
const ROUTER_BASE_PATH = process.env.ROUTER_BASE_PATH || ''
|
2021-09-20 02:22:35 +02:00
|
|
|
|
2022-05-15 00:23:22 +02:00
|
|
|
console.log(process.env.NODE_ENV, 'Config', CONFIG_PATH, METADATA_PATH)
|
2021-09-20 02:22:35 +02:00
|
|
|
|
2024-03-11 17:11:13 +01:00
|
|
|
const Server = new server(SOURCE, PORT, HOST, CONFIG_PATH, METADATA_PATH, ROUTER_BASE_PATH)
|
2021-09-20 02:22:35 +02:00
|
|
|
Server.start()
|