Skip to content

Commit

Permalink
locks node to 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
markthom-as committed Feb 12, 2016
1 parent 0b99ee2 commit 0fc887b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"postinstall": "gulp heroku"
},
"engines": {
"node": "0.11.0"
"node": "0.12.10"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion server/database/connection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

var Sequelize = require('sequelize');

var uri = 'postgres://localhost:5432/yourname';
var uri = 'postgres://markmarcantano@localhost:5432/markmarcantano';
if (process.env.PG_USER) uri = 'postgres://' + process.env.PG_USER + ':' + process.env.PG_PASSWORD + '@localhost:5432/test';
if (process.env.HEROKU_POSTGRESQL_AMBER_URL) uri = process.env.HEROKU_POSTGRESQL_AMBER_URL;

Expand Down

0 comments on commit 0fc887b

Please sign in to comment.