Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
achauve committed Nov 23, 2023
1 parent b02b5cb commit 5770309
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/db/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ dotenv.config();

module.exports = {
development: {
username: process.env.PGUSER,
password: process.env.PGPASSWORD,
database: process.env.PGDATABASE,
username: process.env.PGUSER || "monpsysante",
password: process.env.PGPASSWORD || "monpsysante",
database: process.env.PGDATABASE || "monpsysante",
port: process.env.PGPORT,
host: process.env.PGHOST,
dialect: "postgres",
Expand Down

0 comments on commit 5770309

Please sign in to comment.