2015-02-06 16:46:55 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var path = require('path');
|
|
|
|
var _ = require('lodash');
|
|
|
|
|
|
|
|
function requiredProcessEnv(name) {
|
|
|
|
if(!process.env[name]) {
|
|
|
|
throw new Error('You must set the ' + name + ' environment variable');
|
|
|
|
}
|
|
|
|
return process.env[name];
|
|
|
|
}
|
|
|
|
|
|
|
|
// All configurations will extend these options
|
|
|
|
// ============================================
|
|
|
|
var all = {
|
|
|
|
env: process.env.NODE_ENV,
|
|
|
|
|
|
|
|
// Root path of server
|
|
|
|
root: path.normalize(__dirname + '/../../..'),
|
|
|
|
|
|
|
|
// Server port
|
|
|
|
port: process.env.PORT || 9000,
|
|
|
|
|
|
|
|
// Should we populate the DB with sample data?
|
|
|
|
seedDB: false,
|
|
|
|
|
|
|
|
// Secret for session, you will want to change this and make it an environment variable
|
|
|
|
secrets: {
|
|
|
|
session: 'markdown-format-wdiff-secret'
|
|
|
|
},
|
|
|
|
|
|
|
|
// List of user roles
|
|
|
|
userRoles: ['guest', 'user', 'admin'],
|
|
|
|
|
|
|
|
// MongoDB connection options
|
|
|
|
mongo: {
|
|
|
|
options: {
|
|
|
|
db: {
|
|
|
|
safe: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// Export the config object based on the NODE_ENV
|
|
|
|
// ==============================================
|
|
|
|
module.exports = _.merge(
|
|
|
|
all,
|
2015-04-18 01:17:19 +02:00
|
|
|
require('./' + process.env.NODE_ENV + '.js') || {});
|