-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenvironment.d.ts
More file actions
44 lines (30 loc) · 809 Bytes
/
environment.d.ts
File metadata and controls
44 lines (30 loc) · 809 Bytes
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
42
43
44
declare global {
namespace NodeJS {
interface ProcessEnv {
APP_NAME: string;
JWT_SECRET: string;
NODE_ENV: string;
AWS_PROFILE?: string;
DATABASE_URL: string;
POAP_API_URL: string;
POAP_AUTH_URL: string;
POAP_CLIENT_ID: string;
POAP_CLIENT_SECRET: string;
INFURA_API_KEY?: string;
GITHUB_API_URL: string;
GITHUB_APP_URL: string;
GITHUB_APP_CLIENT_ID: string;
GITHUB_APP_CLIENT_SECRET: string;
GITHUB_APP_REDIRECT_URL: string;
REDIS_URL: string;
MAILCHIMP_API_KEY: string;
SENTRY_DSN: string;
POSTMARK_SERVER_TOKEN: string;
GRAPHIQL_PASSWORD: string;
PRIVY_APP_ID: string;
PRIVY_APP_SECRET: string;
PRIVY_APP_PUBLIC_KEY: string;
}
}
}
export {};