node-framework
Version:
node-framework
37 lines (25 loc) • 585 B
JavaScript
/**
* @file global.js ~ 2014-08-11 18:22
* @author sekiyika (px.pengxing@gmail.com)
* @description
*
*/
module.exports = {
// 当前的运行模式
debug: true,
// 指定app的名字
appname: 'wiki',
// 指定代码根目录
appdir: './',
// 版本号
version: '0.0.0.1',
// 作者
author: ['sekiyika'],
appid: '1',
appkey: '9d27ebb4-cc4d-488e-91d0-43359d4b31fb',
staticDir: './public',
controllerDir: './controllers',
middlewareDir: './middlewares',
pluginDir: './plugins',
templateDir: './views'
};