31 lines
615 B
Plaintext
31 lines
615 B
Plaintext
# INOWYA Environment Configuration
|
|
# Copy this to .env and customize
|
|
|
|
# Database
|
|
DB_PASSWORD=inowya123
|
|
|
|
# Security
|
|
SECRET_KEY=your-super-secret-key-change-this-in-production
|
|
JWT_SECRET=another-secret-for-tokens
|
|
|
|
# API
|
|
API_HOST=0.0.0.0
|
|
API_PORT=8000
|
|
|
|
# Timezone (for location analysis)
|
|
TIMEZONE=America/Los_Angeles
|
|
|
|
# File upload limits (MB)
|
|
MAX_UPLOAD_SIZE=500
|
|
|
|
# ML Model paths (relative to workers/)
|
|
TRANSPORT_MODEL_PATH=models/transport.pkl
|
|
|
|
# Geocoding (offline Nominatim)
|
|
NOMINATIM_DATA_PATH=/app/nominatim-data
|
|
|
|
# Optional: Cloud storage
|
|
S3_ENDPOINT=
|
|
S3_ACCESS_KEY=
|
|
S3_SECRET_KEY=
|
|
S3_BUCKET=your-location-data |