Skip to content

Commit

Permalink
Merge pull request #11 from pvcy/jc/fix-env-var-in-config
Browse files Browse the repository at this point in the history
Convert DOB Column to `DATEONLY`
john-craft authored Oct 24, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 0a97fa8 + 869d05b commit 3038adf
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
@@ -3,7 +3,7 @@ require('dotenv').config();
module.exports = {
development: {
username: process.env.DB_USERNAME,
password: process.env.POSTGRES_PASSWORD,
password: process.env.DB_PASSWORD,
database: process.env.POSTGRES_DB,
host: process.env.DB_HOST || 'localhost',
dialect: 'postgres',

0 comments on commit 3038adf

Please sign in to comment.