all files / direwolf/lib/config/ config.js

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23                                           
/**
 * Created by zdy on 2016/9/28.
 * 框架默认配置,决定了应用的整体结构
 */
 
'use strict';
 
module.exports = {
    // 应用的日志目录
    logDir: 'log',
 
    // 应用的配置文件
    config: {
        default: 'config/config.default.js',
        production: 'config/config.production.js'
    },
 
    // 控制器目录
    controllerDir: 'controller',
 
    // service目录
    serviceDir: 'service'
};