Fix bower post install script

This commit is contained in:
Amos Haviv
2013-08-27 13:47:17 +03:00
parent 3f3f0394d3
commit d282aa0f4d

View File

@@ -3,7 +3,7 @@ var path = require('path'),
module.exports = {
development: {
db: 'mongodb://admin:password@ds027308.mongolab.com:27308/meanstack',
db: 'mongodb://localhost/mean-dev',
root: rootPath,
app: {
name: 'MEAN - A Modern Stack - Development'
@@ -30,7 +30,7 @@ module.exports = {
}
},
test: {
db: 'mongodb://admin:password@ds027308.mongolab.com:27308/meanstack',
db: 'mongodb://localhost/mean-test',
root: rootPath,
app: {
name: 'MEAN - A Modern Stack - Test'
@@ -57,7 +57,7 @@ module.exports = {
}
},
production: {
db: 'mongodb://admin:password@ds027308.mongolab.com:27308/meanstack',
db: 'mongodb://localhost/mean',
root: rootPath,
app: {
name: 'MEAN - A Modern Stack - Production'