@@ -26,7 +26,7 @@ module.exports = appInfo => {
// add your config here
config.cluster = {
listen: {
- port: 9008,
+ port: 9007,
},
};
@@ -8,5 +8,17 @@ module.exports = () => {
// consoleLevel: 'DEBUG',
+ config.mongoose = {
+ url: 'mongodb://localhost:27017/platform',
+ options: {
+ user: 'admin',
+ pass: 'admin',
+ authSource: 'admin',
+ useNewUrlParser: true,
+ useCreateIndex: true,
+ useUnifiedTopology: true,
+ },
+ };
+
return config;