-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
42 lines (34 loc) · 953 Bytes
/
Copy path.env.example
File metadata and controls
42 lines (34 loc) · 953 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
# Database
DATABASE_URL=postgresql+asyncpg://user:password@postgres:5432/lucknow_events
ALEMBIC_DATABASE_URL=postgresql+psycopg2://user:password@postgres:5432/lucknow_events
# Redis
REDIS_URL=redis://redis:6379/0
# AI
GEMINI_API_KEY=
GEMINI_MODEL=gemini-3.0-flash
# Storage
STORAGE_TYPE=local
LOCAL_STORAGE_PATH=/app/data/snapshots
R2_ACCOUNT_ID=
R2_ACCESS_KEY_ID=
R2_SECRET_ACCESS_KEY=
R2_BUCKET_NAME=lucknow-events
# Admin Auth
JWT_SECRET=change_me_to_a_random_32_char_string
JWT_ALGORITHM=HS256
JWT_EXPIRE_MINUTES=60
ADMIN_EMAIL=admin@example.com
ADMIN_PASSWORD_HASH=
# Source API keys
MEETUP_CLIENT_ID=
MEETUP_CLIENT_SECRET=
# App
CORS_ORIGINS=http://localhost:3000
DEBUG=true
LOG_LEVEL=INFO
# Frontend
NEXT_PUBLIC_API_URL=http://localhost:8000/api/v1
# Server-side (SSR/ISR/build) API base URL. In Docker dev, use http://api:8000/api/v1
INTERNAL_API_URL=
NEXT_PUBLIC_SITE_NAME=Lucknow Tech Events
NEXT_PUBLIC_SITE_URL=http://localhost:3000