File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ var path = require('path');
2
2
var Sequelize = require ( 'sequelize' ) ;
3
3
4
4
var env = require ( path . join ( __dirname , '../env' ) ) ;
5
- var db = new Sequelize ( env . DATABASE_URI , {
5
+ var db = new Sequelize ( env . DATABASE_URL , {
6
6
logging : env . LOGGING ? console . log : false ,
7
7
native : env . NATIVE
8
8
} ) ;
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- DATABASE_URI : 'postgres://localhost:5432/fsg' ,
2
+ DATABASE_URL : 'postgres://localhost:5432/fsg' ,
3
3
SESSION_SECRET : 'Optimus Prime is my real dad' ,
4
4
TWITTER : {
5
5
consumerKey : 'INSERT_TWITTER_CONSUMER_KEY_HERE' ,
Original file line number Diff line number Diff line change 7
7
*/
8
8
9
9
module . exports = {
10
- DATABASE_URI : process . env . DATABASE_URI ,
10
+ DATABASE_URL : process . env . DATABASE_URL ,
11
11
SESSION_SECRET : process . env . SESSION_SECRET ,
12
12
TWITTER : {
13
13
consumerKey : process . env . TWITTER_CONSUMER_KEY ,
Original file line number Diff line number Diff line change 1
1
module . exports = {
2
- DATABASE_URI : 'postgres://localhost:5432/testing-fsg' ,
2
+ DATABASE_URL : 'postgres://localhost:5432/testing-fsg' ,
3
3
SESSION_SECRET : 'Optimus Prime is my real dad' ,
4
4
TWITTER : {
5
5
consumerKey : 'INSERT_TWITTER_CONSUMER_KEY_HERE' ,
You can’t perform that action at this time.
0 commit comments