UNPKG

lml-main

Version:

This is now a mono repository published into many standalone packages.

26 lines (24 loc) 638 B
// please note that ALL values must be strings export interface ConfigModel { APP_VERSION: string AUTH0_ID: string AUTH0_DOMAIN: string AUTH0_AUDIENCE: string API_HOST: string DISABLE_REDUX_DEVTOOLS: string DISABLE_REDUX_LOGGER: string EDQ_URL: string EDQ_TOKEN: string ENV: string GA_ID: number GOOGLE_MAPS_API_URL: string GOOGLE_MAPS_API_KEY: string HOTJAR_ID: number LOGGLY_KEY: string SERVICE: string SUPPORT_EMAIL: string PUSHER_KEY: string PUSHER_CLUSTER: string } export const config: ConfigModel = process.env.CONFIG // console.log('CONFIG IS', config)