Skip to content

Commit

Permalink
Set db host to localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
john-craft committed Oct 24, 2023
1 parent 9a0066b commit b45d0d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion users-api/src/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = {
username: process.env.DB_USERNAME,
password: process.env.DB_PASSWORD,
database: process.env.DB_NAME,
host: process.env.DB_HOST || 'localhost',
host: 'localhost', // process.env.DB_HOST ||
dialect: 'postgres',
},
};

0 comments on commit b45d0d8

Please sign in to comment.