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.
25 lines
585 B
25 lines
585 B
const path = require('path')
|
|
|
|
let WIKI = {
|
|
IS_DEBUG: process.env.NODE_ENV === 'development',
|
|
ROOTPATH: process.cwd(),
|
|
SERVERPATH: path.join(process.cwd(), 'server'),
|
|
Error: require('../helpers/error'),
|
|
configSvc: require('./config')
|
|
}
|
|
global.WIKI = WIKI
|
|
|
|
WIKI.configSvc.init()
|
|
WIKI.logger = require('./logger').init('JOB')
|
|
const args = require('yargs').argv
|
|
|
|
;(async () => {
|
|
try {
|
|
await require(`../jobs/${args.job}`)(args.data)
|
|
process.exit(0)
|
|
} catch (e) {
|
|
await new Promise(resolve => process.stderr.write(e.message, resolve))
|
|
process.exit(1)
|
|
}
|
|
})()
|