Skip to content

Commit

Permalink
chore(infra): default public url
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schultz committed Aug 24, 2023
1 parent 4c56482 commit f80a18c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/lib/scorer/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function getEnvironment(config: ScorerEnvironmentConfig) {
},
{
name: "READ_REPLICA_0_URL",
value: config.readReplicaConnectionUrl,
value: config.readReplicaConnectionUrl || config.rdsConnectionUrl,
},
{
name: "UI_DOMAINS",
Expand Down Expand Up @@ -139,7 +139,7 @@ export function getEnvironment(config: ScorerEnvironmentConfig) {
},
{
name: "PASSPORT_PUBLIC_URL",
value: config.passportPublicUrl,
value: config.passportPublicUrl || "https://passport.gitcoin.co/",
},
];
}
Expand Down

0 comments on commit f80a18c

Please sign in to comment.