mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
57 lines
1.3 KiB
// ===========================================
|
|
// Wiki.js
|
|
// Licensed under AGPLv3
|
|
// ===========================================
|
|
|
|
const path = require('path')
|
|
const { nanoid } = require('nanoid')
|
|
const { DateTime } = require('luxon')
|
|
const { gte } = require('semver')
|
|
|
|
// ----------------------------------------
|
|
// Init WIKI instance
|
|
// ----------------------------------------
|
|
|
|
let WIKI = {
|
|
IS_DEBUG: process.env.NODE_ENV === 'development',
|
|
IS_MASTER: true,
|
|
ROOTPATH: process.cwd(),
|
|
INSTANCE_ID: nanoid(10),
|
|
SERVERPATH: path.join(process.cwd(), 'server'),
|
|
Error: require('./helpers/error'),
|
|
configSvc: require('./core/config'),
|
|
kernel: require('./core/kernel'),
|
|
startedAt: DateTime.utc()
|
|
}
|
|
global.WIKI = WIKI
|
|
|
|
WIKI.configSvc.init()
|
|
|
|
// ----------------------------------------
|
|
// Init Logger
|
|
// ----------------------------------------
|
|
|
|
WIKI.logger = require('./core/logger').init('MASTER')
|
|
|
|
// ----------------------------------------
|
|
// Start Kernel
|
|
// ----------------------------------------
|
|
|
|
WIKI.kernel.init()
|
|
|
|
// ----------------------------------------
|
|
// Register exit handler
|
|
// ----------------------------------------
|
|
|
|
process.on('SIGTERM', () => {
|
|
WIKI.kernel.shutdown()
|
|
})
|
|
process.on('SIGINT', () => {
|
|
WIKI.kernel.shutdown()
|
|
})
|
|
process.on('message', (msg) => {
|
|
if (msg === 'shutdown') {
|
|
WIKI.kernel.shutdown()
|
|
}
|
|
})
|