Skip to content

Commit

Permalink
chore: update default db settings
Browse files Browse the repository at this point in the history
  • Loading branch information
maxlm-devico committed Sep 26, 2024
1 parent 2dd2ad7 commit 2389a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paymaster/config/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const DB_DATABASE = process.env.DB_DATABASE || "gas-tank";
export const DB_HOST = process.env.DB_HOST || "host.docker.internal";
export const DB_PASSWORD = process.env.DB_PASSWORD || "";
export const DB_PORT = Number(process.env.DB_PORT) || 5432;
export const DB_USERNAME = process.env.DB_USERNAME || "murzik";
export const DB_USERNAME = process.env.DB_USERNAME || "postgres";
export const DB_SSL_MODE = process.env.DB_SSL_MODE
? (process.env.DB_SSL_MODE || "").toLowerCase() === "true"
: NODE_ENV !== "local";

0 comments on commit 2389a46

Please sign in to comment.