-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
50 lines (50 loc) · 1.65 KB
/
Copy pathenv.d.ts
File metadata and controls
50 lines (50 loc) · 1.65 KB
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
declare namespace NodeJS {
interface ProcessEnv {
// Protocol
DEBUG_MODE: string;
NEXT_PUBLIC_HTTP_PROTOCOLE: 'http' | 'https';
HTTP: string;
WS: string;
ALLOWED_ORIGINS: string;
// Next.js backend proxy (for cookies)
NEXT_PUBLIC_BACKEND_DOMAIN: string;
NEXT_PUBLIC_BACKEND_API: string;
NEXT_PUBLIC_API_ROOT_URL: string;
NEXT_PUBLIC_API_ROOT_PORT: string;
NEXT_PUBLIC_API_URL: string;
// Base URLs
NEXT_PUBLIC_ROOT_API_URL: string;
AUTH_TRUST_HOST: string;
NEXTAUTH_SECRET: string;
NEXTAUTH_URL: string;
NEXT_PUBLIC_DOMAIN_URL_PREFIX: string;
// Account
NEXT_PUBLIC_ACCOUNT_ROOT: string;
NEXT_PUBLIC_ACCOUNT_REFRESH_TOKEN: string;
NEXT_PUBLIC_ACCOUNT_LOGIN: string;
NEXT_PUBLIC_ACCOUNT_LOGOUT: string;
NEXT_PUBLIC_ACCOUNT_CREATE_ACCOUNT: string;
NEXT_PUBLIC_ACCOUNT_CHECK_EMAIL: string;
NEXT_PUBLIC_ACCOUNT_PASSWORD_CHANGE: string;
NEXT_PUBLIC_ACCOUNT_SEND_PASSWORD_RESET: string;
NEXT_PUBLIC_ACCOUNT_PASSWORD_RESET: string;
NEXT_PUBLIC_ACCOUNT_PROFIL: string;
NEXT_PUBLIC_USERS_ROOT: string;
// WebSocket
NEXT_PUBLIC_ROOT_WS_URL: string;
NEXT_PUBLIC_WS_MAINTENANCE_ROOT: string;
// Project Management
NEXT_PUBLIC_PROJECT_LIST: string;
NEXT_PUBLIC_PROJECT_CATEGORIES: string;
NEXT_PUBLIC_PROJECT_SUBCATEGORIES: string;
NEXT_PUBLIC_PROJECT_EXPENSE_TAXONOMY: string;
NEXT_PUBLIC_REVENUE_LIST: string;
NEXT_PUBLIC_EXPENSE_LIST: string;
// Notifications
NEXT_PUBLIC_PROJET_NOTIFICATION_ROOT: string;
NEXT_PUBLIC_PROJET_NOTIFICATIONS: string;
NEXT_PUBLIC_PROJET_NOTIFICATION_PREFERENCES: string;
NEXT_PUBLIC_PROJET_NOTIFICATION_MARK_READ: string;
NEXT_PUBLIC_PROJET_NOTIFICATION_UNREAD_COUNT: string;
}
}