Skip to content

Commit

Permalink
feat(config): init montaine configuration ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBrisorgueil committed Mar 6, 2020
1 parent 8c16f9a commit 3b8ffc7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions config/defaults/montaineDev.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const _ = require('lodash');
const defaultConfig = require('./development');

module.exports = _.merge(defaultConfig, {
app: {
title: 'Montaine Node (Dev Environment)',
contact: 'brisorgueilp@gmail.com',
},
port: 3011,
db: {
uri: 'mongodb://localhost/LouNodeDev',
debug: false,
},
cors: {
origin: ['http://localhost:8011'],
},
});

0 comments on commit 3b8ffc7

Please sign in to comment.