-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 822 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (21 loc) · 822 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
# IMPORTANT: This is a template file. Copy to .env and fill in your values.
# DO NOT commit .env file to version control!
# Database Configuration (Supabase PostgreSQL)
DB_URL=jdbc:postgresql://your-host:5432/postgres
DB_USERNAME=your-username
DB_PASSWORD=your-password
# Server Configuration
SERVER_PORT=8080
# JWT Configuration
JWT_SECRET=your-jwt-secret-key
JWT_EXPIRATION=900000
REFRESH_TOKEN_EXPIRATION=604800000
# Python Microservices URLs (internal networking in production)
PYTHON_CALL_ANALYSIS_URL=http://localhost:5001
PYTHON_FACIAL_RECOGNITION_URL=http://localhost:5002
# Supabase Configuration
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_SERVICE_KEY=your-supabase-service-key
SUPABASE_BUCKET=criminal-photos
# CORS Configuration (comma-separated origins, use * for all)
CORS_ALLOWED_ORIGINS=*