File size: 563 Bytes
18935fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Database Configuration (Server-side only)
DATABASE_URL=postgresql://username:password@localhost:5432/shipment_db

# API Keys (Server-side only - NOT exposed to client)
OPENWEATHER_API_KEY=your_openweather_api_key_here
GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here
MAPBOX_ACCESS_TOKEN=your_mapbox_token_here

# Flask Configuration (Server-side only)
FLASK_ENV=production
SECRET_KEY=your_secret_key_here

# ML Model Configuration
MODEL_UPDATE_INTERVAL=24  # hours
PREDICTION_THRESHOLD=0.7

# Deployment Configuration
PORT=8050
HOST=0.0.0.0