framez-server/Server/Config/Config.js
2018-04-27 15:23:19 +03:00

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`,
};