lml-main
Version:
This is now a mono repository published into many standalone packages.
22 lines (20 loc) • 547 B
text/typescript
// please note that ALL values must be strings
export interface ConfigModel {
APIGEE_TOKEN: string
API_HOST: string
APP_VERSION: 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 as any