Skip to content

Commit

Permalink
Fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
doctorpangloss committed Sep 29, 2023
1 parent 42a7c39 commit 5c3b6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spellsource-web/src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const pgUser = process.env.PGUSER || process.env.PG_USER || "admin";
export const pgPassword = process.env.PGPASSWORD || process.env.PG_PASSWORD || "password";
export const pgDatabase = process.env.PGDATABASE || process.env.PG_DATABASE || "spellsource";
// this is also from redis.uri in the master config
export const redisUri = parseInt(process.env.REDIS_URI || "redis://localhost:6379");
export const redisUri = process.env.REDIS_URI || "redis://localhost:6379";
export const keycloakUrl =
process.env.KEYCLOAK_URL || `http://localhost:${parseInt(process.env.KEYCLOAK_PORT || "8080")}`;

Expand Down

0 comments on commit 5c3b6fa

Please sign in to comment.