-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.d.ts
47 lines (36 loc) · 1.16 KB
/
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
42
43
44
45
46
47
/* eslint-disable @typescript-eslint/no-unused-vars */
namespace NodeJS {
interface ProcessEnv {
// Database
DATABASE_URL: string;
DATABASE_POOL_URL: string;
// AUTH JS
AUTH_URL: string;
AUTH_SECRET: string;
GOOGLE_CLIENT_ID: string;
GOOGLE_CLIENT_SECRET: string;
NEXT_PUBLIC_DEFAULT_LOGIN: string;
NEXT_PUBLIC_DEFAULT_LOGIN_REDIRECT: string;
WHITELIST_EMAIL_DOMAINS: string;
// Cloudflare Turnstile
NEXT_PUBLIC_TURNSTILE_SITE_KEY: string;
TURNSTILE_SECRET_KEY: string;
// Password Edge hasher / Query JWT Validation
HASH_KEY: string;
HASH_PHRASE: string;
//Email Providers
RESEND_API_KEY: string;
MAILERSEND_API_KEY: string;
BREVO_API_KEY: string;
MAILJET_KEY_BASE64: string;
EMAIL_FROM: string;
VERIFICATION_TOKEN_TTL_MINUTES: number;
EMAIL_FROM_NAME: string;
EMAIL_FROM_EMAIL: string;
EMAIL_BRAND_NAME: string;
VERIFY_SUBJECT: string;
VERIFY_TOKEN_URL: string;
RESET_SUBJECT: string;
RESET_TOKEN_URL: string;
}
}