-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
33 lines (27 loc) · 820 Bytes
/
Copy pathenv.example
File metadata and controls
33 lines (27 loc) · 820 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
# Docker Hub Configuration
DOCKER_USERNAME=
# Database Configuration (Neon)
DB_ADDR=
DB_MAX_OPEN_CONNS=25
DB_MAX_IDLE_CONNS=25
DB_MAX_LIFETIME=5m
# Redis Configuration
REDIS_PASSWORD=
REDIS_DB=0
# JWT Configuration
JWT_SECRET=your-super-secret-jwt-key-here-make-it-long-and-random
# Google OAuth (Optional - comment out if not using)
# GOOGLE_CLIENT_ID=your-google-client-id
# GOOGLE_CLIENT_SECRET=your-google-client-secret
# GOOGLE_REDIRECT_URL=http://yourdomain.com/auth/google/callback
# SMTP Configuration (Optional - comment out if not using)
# SMTP_HOST=smtp.gmail.com
# SMTP_PORT=587
# SMTP_USER=your-email@gmail.com
# SMTP_PASS=your-app-password
# SMTP_FROM=your-email@gmail.com
# SMTP_SECURE=true
# Application Configuration
API_URL=http://yourdomain.com
FRONTEND_URL=http://yourdomain.com
LOG_LEVEL=info