Skip to content

Commit

Permalink
Change DB_HOST to POSTGRES_HOST
Browse files Browse the repository at this point in the history
  • Loading branch information
edwinm committed Jan 4, 2025
1 parent f04d4e8 commit a9cd201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export const EXPRESS_PORT = 8081;
export const POSTGRES_DB = process.env.POSTGRES_DB;
export const POSTGRES_USER = process.env.POSTGRES_USER;
export const POSTGRES_PASSWORD = process.env.POSTGRES_PASSWORD;
export const POSTGRES_HOST = process.env.DB_HOST;
export const POSTGRES_HOST = process.env.POSTGRES_HOST;
export const POSTGRES_PORT = 5432;
export const NODE_ENV = process.env.NODE_ENV;

0 comments on commit a9cd201

Please sign in to comment.