1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-02-15 04:42:05 +00:00
ansible-playable/server/config/environment/development.js

17 lines
271 B
JavaScript
Raw Normal View History

2017-06-07 17:36:44 +00:00
'use strict';
/*eslint no-process-env:0*/
// Development specific configuration
// ==================================
module.exports = {
// MongoDB connection options
mongo: {
uri: 'mongodb://db/app2-dev'
},
// Seed database on startup
2017-06-28 03:27:22 +00:00
seedDB: false
2017-06-07 17:36:44 +00:00
};