Skip to content

Commit

Permalink
Merge branch 'master' of github.com:jshultz/mean-1
Browse files Browse the repository at this point in the history
  • Loading branch information
thehashrocket committed Mar 9, 2014
2 parents c06a9ae + 7edb6b8 commit 31ec93a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion config/env/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ module.exports = {
description: 'Full-Stack JavaScript with MongoDB, Express, AngularJS, and Node.js',
keywords: 'mongodb, express, angularjs, node.js, mongoose, passport'
},
db: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI,
root: rootPath,
port: process.env.PORT || 3000,
templateEngine: 'swig',
Expand Down
2 changes: 1 addition & 1 deletion config/env/production.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

module.exports = {
db: 'mongodb://localhost/mean',
db: process.env.MONGOHQ_URL || process.env.MONGOLAB_URI,
facebook: {
clientID: 'APP_ID',
clientSecret: 'APP_SECRET',
Expand Down

0 comments on commit 31ec93a

Please sign in to comment.