-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
48 lines (34 loc) · 939 Bytes
/
.env.example
File metadata and controls
48 lines (34 loc) · 939 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Application Settings
ENVIRONMENT=
DEBUG=
# Backend API URL (for frontend)
NEXT_PUBLIC_API_URL=http://localhost:8000
# Clerk Authentication
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/dashboard
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/dashboard
# Database
DATABASE_URL=
# Security
SECRET_KEY=
ENCRYPTION_KEY=
# Frontend URL (for backend CORS)
FRONTEND_URL=http://localhost:3000
# Redis (Optional)
REDIS_URL=
# Admin User IDs (Optional, comma-separated)
ADMIN_USER_IDS=
#frontend env example
NEXT_PUBLIC_API_URL=http://localhost:8000
#clerk keys
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/dashboard
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/dashboard
ENVIRONMENT=development
DEBUG=True