-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
36 lines (28 loc) · 756 Bytes
/
.env.example
File metadata and controls
36 lines (28 loc) · 756 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
# DisasterConnect Environment Configuration
# Database Configuration
MONGODB_URI=mongodb://localhost:27017
MONGODB_DATABASE=disasterconnect
# Application Settings
DEBUG=False
LOG_LEVEL=INFO
PORT=5000
HOST=localhost
# Security Settings
SECRET_KEY=your_secret_key_here
JWT_SECRET=your_jwt_secret_here
JWT_EXPIRATION=3600
# WebSocket Configuration
WEBSOCKET_HOST=localhost
WEBSOCKET_PORT=8765
# Map Services
MAP_API_KEY=your_map_api_key_here
# Email Configuration (Optional)
SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=your_email@example.com
SMTP_PASSWORD=your_email_password
# Redis Cache (Optional)
REDIS_URL=redis://localhost:6379/0
# Logging
LOG_FILE=logs/disasterconnect.log
LOG_FORMAT=%(asctime)s - %(name)s - %(levelname)s - %(message)s