-
Notifications
You must be signed in to change notification settings - Fork 6
/
environment.d.ts
41 lines (33 loc) · 1012 Bytes
/
environment.d.ts
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV: string
PORT: number
FRONT_URL: string
CORS_ALLOWED_ORIGINS: string
DATABASE_TYPE: "postgres"
DATABASE_URL: string
DATABASE_METRICS_URL: string
TYPEORM_SYNCHRONIZE: string
TYPEORM_LOGGING: string
TYPEORM_ENTITIES: string
TYPEORM_ENTITIES_METRICS: string
TZ_CT_ADDRESS_ISSUER_V2: string
TZ_CT_ADDRESS_ISSUER_V3: string
TZ_CT_ADDRESS_GENTK_V1: string
TZ_CT_ADDRESS_GENTK_V2: string
TZ_CT_ADDRESS_GENTK_V3: string
RECORD_METRICS: "0" | "1"
REDIS_URL?: string
ALGOLIA_APP_ID: string
ALGOLIA_SEARCH_KEY: string
ALGOLIA_INDEX_GENERATIVE: string
ALGOLIA_INDEX_MARKETPLACE: string
ALGOLIA_INDEX_USERS: string
ALGOLIA_INDEX_ARTICLES: string
}
}
}
// If this file has no import/export statements (i.e. is a script)
// convert it into a module by adding an empty export statement.
export {}