-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
38 lines (30 loc) · 883 Bytes
/
.env.example
File metadata and controls
38 lines (30 loc) · 883 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
# Database
DATABASE_URL="postgresql://username:password@localhost:5432/legalai"
# JWT Secrets
JWT_SECRET="your-super-secret-jwt-key-here"
JWT_REFRESH_SECRET="your-refresh-secret-key-here"
JWT_EXPIRES_IN="15m"
JWT_REFRESH_EXPIRES_IN="7d"
# Frontend URL
FRONTEND_URL="http://localhost:3000"
# Python Backend
PYTHON_BACKEND_URL="http://localhost:8000"
PYTHON_BACKEND_TIMEOUT="30000"
# Redis (Upstash)
UPSTASH_REDIS_REST_URL="your-upstash-redis-url"
UPSTASH_REDIS_REST_TOKEN="your-upstash-redis-token"
# OAuth - Google
GOOGLE_CLIENT_ID="your-google-client-id"
GOOGLE_CLIENT_SECRET="your-google-client-secret"
GOOGLE_CALLBACK_URL=""
# OAuth - Meta/Facebook
META_APP_ID="your-meta-app-id"
META_APP_SECRET="your-meta-app-secret"
META_CALLBACK_URL=""
# Rate Limiting
RATE_LIMIT_WINDOW_MS=""
RATE_LIMIT_MAX_REQUESTS=""
# Environment
NODE_ENV="development"
PORT="3001"
LOG_LEVEL="info"