20 lines
325 B
JavaScript
20 lines
325 B
JavaScript
// Main Configuration file
|
|
//
|
|
|
|
const DBAuth = require('../../private/DBAuth');
|
|
|
|
|
|
module.exports = {
|
|
server: {
|
|
enableSSL: false,
|
|
ssl:{
|
|
cert: '',
|
|
key: '',
|
|
passphrase: ''
|
|
},
|
|
port: 3000
|
|
},
|
|
|
|
mongoURL: `mongodb://${DBAuth.username}:${DBAuth.password}@ds159489.mlab.com:59489/framez_db`,
|
|
|
|
};
|