Merge remote-tracking branch 'parent/main' into kb_migration
This commit is contained in:
commit
d1a76ea317
20 changed files with 447 additions and 280 deletions
|
@ -110,6 +110,11 @@ const pgConfigFromEnv = (env) => {
|
|||
|
||||
if (env.DATABASE_URL) {
|
||||
baseConfig = dbUrlToConfig(env.DATABASE_URL);
|
||||
|
||||
// Support overriding the database password in the connection URL
|
||||
if (!baseConfig.password && env.DB_PASS) {
|
||||
baseConfig.password = env.DB_PASS;
|
||||
}
|
||||
} else {
|
||||
baseConfig = pgConfigs[environment];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue