We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcb4cc4 commit 360f700Copy full SHA for 360f700
frontend/src/privateEnv.ts
@@ -16,7 +16,7 @@ export type PrivateEnv = z.infer<typeof PrivateEnv>
16
const defaultAdminKey = 'joppe' as const
17
18
export const privateEnv = {
19
- redisUrl: dev ? 'redis://localhost:6379' : PRIVATE_REDIS_URL,
+ redisUrl: dev ? 'redis://127.0.0.1:16379' : PRIVATE_REDIS_URL,
20
postgresUrl: dev ? 'postgres://postgres:postgres@localhost:5432/postgres' : PRIVATE_POSTGRES_URL,
21
statsdHost: PRIVATE_STATSD_HOST,
22
statsdPort: Number(PRIVATE_STATSD_PORT),
0 commit comments