-
Notifications
You must be signed in to change notification settings - Fork 1
/
enviroment.d.ts
55 lines (39 loc) · 977 Bytes
/
enviroment.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
declare global {
namespace NodeJS {
interface ProcessEnv {
// Environment variables are always strings
NEXTAUTH_URL: string;
NEXTAUTH_SECRET: string;
NEXT_PUBLIC_API_URL: string;
GOOGLE_ID: string;
GOOGLE_SECRET: string;
GITHUB_ID: string;
GITHUB_SECRET: string;
MONGODB_URI: string;
DB: string;
TBA_URL: string;
TBA_KEY: string;
TOA_URL: string;
TOA_KEY: string;
TOA_APP_ID: string;
API_KEY: string;
DEFAULT_IMAGE: string;
IMAGE_UPLOAD_DIR: string;
FILL_TEAMS: string;
NEXT_PUBLIC_SLACK_CLIENT_ID: string;
SLACK_CLIENT_SECRET: string;
NEXT_PUBLIC_GOOGLE_ANALYTICS_ID: string;
SMTP_HOST: string;
SMTP_PORT: string;
SMTP_USER: string;
SMTP_PASSWORD: string;
SMTP_FROM: string;
RESEND_AUDIENCE_ID: string;
NEXT_PUBLIC_FORCE_OFFLINE_MODE: string;
NEXT_PUBLIC_BUILD_TIME: string;
DEVELOPER_EMAILS: string;
NODE_ENV: "development" | "production";
}
}
}
export {};