Files
about/config/config.js
Tommy Parnell c05f804071 remove comps
2015-06-29 23:10:10 -04:00

32 lines
497 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: 3000,
},
test: {
root: rootPath,
app: {
name: 'about.tommyparnell'
},
port: 3000,
},
production: {
root: rootPath,
app: {
name: 'about.tommyparnell'
},
port: 3000,
}
};
module.exports = config[env];