-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.d.ts
More file actions
31 lines (28 loc) · 759 Bytes
/
env.d.ts
File metadata and controls
31 lines (28 loc) · 759 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
export {};
declare global {
namespace NodeJS {
interface ProcessEnv {
NODE_ENV?: "development" | string;
// Options
MAX_SIZE_LIMIT?: string;
PASTE_ID_LENGTH?: string;
NEXT_PUBLIC_APP_URL?: string;
// Supabase (Vercel)
POSTGRES_URL: string;
POSTGRES_PRISMA_URL: string;
SUPABASE_URL: string;
NEXT_PUBLIC_SUPABASE_URL: string;
POSTGRES_URL_NON_POOLING: string;
SUPABASE_JWT_SECRET: string;
POSTGRES_USER: string;
NEXT_PUBLIC_SUPABASE_ANON_KEY: string;
POSTGRES_PASSWORD: string;
POSTGRES_DATABASE: string;
SUPABASE_SERVICE_ROLE_KEY: string;
POSTGRES_HOST: string;
// Vercel
VERCEL_ENV: string;
VERCEL_URL: string;
}
}
}