mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
18 lines
526 B
JavaScript
18 lines
526 B
JavaScript
// ===========================================
|
|
// REQUARKS WIKI
|
|
// 1.0.0
|
|
// Licensed under AGPLv3
|
|
// ===========================================
|
|
|
|
// ----------------------------------------
|
|
// Load modules
|
|
// ----------------------------------------
|
|
|
|
global.winston = require('winston');
|
|
winston.info('Requarks Wiki is initializing...');
|
|
|
|
global.ROOTPATH = __dirname;
|
|
|
|
var appconfig = require('./models/config')('./config.yml');
|
|
global.db = require('./models/db')(appconfig);
|
|
global.red = require('./models/redis')(appconfig); |