Files
about/config/config.js
Tommy Parnell 7d9e54c418 init
2015-06-29 04:56:29 -04:00

32 lines
495 B
JavaScript

var path = require('path'),
rootPath = path.normalize(__dirname + '/..'),
env = process.env.NODE_ENV || 'development';
var config = {
development: {
root: rootPath,
app: {
name: 'about.tommyparnell'
},
port: 4000,
},
test: {
root: rootPath,
app: {
name: 'about.tommyparnell'
},
port: 4000,
},
production: {
root: rootPath,
app: {
name: 'about.tommyparnell'
},
port: 80,
}
};
module.exports = config[env];