Skip to content

Commit

Permalink
fix: env variable in consent test
Browse files Browse the repository at this point in the history
  • Loading branch information
dolcalmi committed Oct 21, 2024
1 parent 8bb4876 commit 1514dd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/consent/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ export const env = createEnv({
server: {
HYDRA_ADMIN_URL: z.string().default("http://localhost:4445"),
CORE_AUTH_URL: z.string().default("http://localhost:4455/auth"),
CI: z.boolean().default(false),
},
shared: {
GRAPHQL_ENDPOINT: z.string().default("http://localhost:4455/graphql"),
NODE_ENV: z.string(),
CI: z.boolean().default(false),
},
runtimeEnv: {
CORE_AUTH_URL: process.env.CORE_AUTH_URL,
HYDRA_ADMIN_URL: process.env.HYDRA_ADMIN_URL,
GRAPHQL_ENDPOINT: process.env.GRAPHQL_ENDPOINT,
NODE_ENV: process.env.NODE_ENV,
CI: process.env.CI,
CI: !!process.env.TILT_HOST,
},
})

0 comments on commit 1514dd2

Please sign in to comment.