Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
updated the development.js environment configuration file to use the …
Browse files Browse the repository at this point in the history
…mean-dev database instead of mean-test which is used for testing/stages environment
  • Loading branch information
lirantal committed Jul 10, 2015
1 parent 9e8ee9e commit 2e03d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/env/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module.exports = {
db: {
uri: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI || 'mongodb://' + (process.env.DB_1_PORT_27017_TCP_ADDR || 'localhost') + '/mean-test',
uri: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI || 'mongodb://' + (process.env.DB_1_PORT_27017_TCP_ADDR || 'localhost') + '/mean-dev',
options: {
user: '',
pass: ''
Expand Down

0 comments on commit 2e03d13

Please sign in to comment.