-
Notifications
You must be signed in to change notification settings - Fork 2
/
env.d.ts
30 lines (30 loc) · 804 Bytes
/
env.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
declare namespace NodeJS {
interface ProcessEnv {
MONGODB_URI: string
MONGODB_DB: string
ENCRYPTION_SECRET: string
RESEND_API_KEY: string
RESEND_EMAIL: string
IS_RESEND_ENABLE: string
GEMINI_API_KEY: string
GEMINI_MODEL: string
GEMINI_RICHER_MODEL: string
APP_URL: string
APP_LOCALHOST_URL: string
GOOGLE_ANALYTICS_ID: string
SENTRY_AUTH_TOKEN: string
NEXT_PUBLIC_SENTRY_DSN: string
AUTH_SECRET: string
AUTH_GITHUB_ID: string
AUTH_GITHUB_SECRET: string
AUTH_GOOGLE_ID: string
AUTH_GOOGLE_SECRET: string
AUTH_SPOTIFY_ID: string
AUTH_SPOTIFY_SECRET: string
AUTH_NOTION_ID: string
AUTH_NOTION_SECRET: string
AUTH_NOTION_REDIRECT_URI: string
AUTH_DRIBBBLE_ID: string
AUTH_DRIBBBLE_SECRET: string
}
}