akb-cli
Version:
akb cli
37 lines (30 loc) • 458 B
JavaScript
/**
* @file globals
* @author akb
*/
module.exports = {
/**
* is debug
*
* @type {boolean}
*/
debug: process.env.NODE_ENV !== 'production',
/**
* app name
*
* @type {string}
*/
appname: 'test',
/**
* appdir, will be changed after config loaded.
*
* @type {string}
*/
appdir: '',
/**
* version
*
* @type {string}
*/
version: '0.0.0.0'
};