All files / src env.ts

0% Statements 0/12
100% Branches 1/1
100% Functions 1/1
0% Lines 0/12

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26                                                   
declare global {
  interface Window {
    __ENV__: {
      VITE_KEYCLOAK_URL?: string
      VITE_KEYCLOAK_REALM?: string
      VITE_KEYCLOAK_CLIENT_ID?: string
      VITE_APP_URL?: string
      VITE_API_URL?: string
    }
  }
}
 
function getEnv(key: keyof Window['__ENV__'], fallback: string): string {
  const val = window.__ENV__?.[key]
  if (val && !val.startsWith('$')) return val
  return (import.meta.env[key] as string) || fallback
}
 
export const env = {
  KEYCLOAK_URL: getEnv('VITE_KEYCLOAK_URL', 'http://localhost:8080'),
  KEYCLOAK_REALM: getEnv('VITE_KEYCLOAK_REALM', 'dhbw'),
  KEYCLOAK_CLIENT_ID: getEnv('VITE_KEYCLOAK_CLIENT_ID', 'appstore-frontend'),
  APP_URL: getEnv('VITE_APP_URL', 'http://localhost:5173'),
  API_URL: getEnv('VITE_API_URL', 'http://localhost:8000'),
}