20 lines
440 B
Plaintext
20 lines
440 B
Plaintext
# Database
|
|
POSTGRES_USER=pension_user
|
|
POSTGRES_PASSWORD=pension_password
|
|
POSTGRES_DB=pension_quant
|
|
|
|
# Backend
|
|
SECRET_KEY=your-secret-key-change-in-production-use-long-random-string
|
|
ENVIRONMENT=development
|
|
|
|
# Frontend
|
|
REACT_APP_API_URL=http://localhost:8000
|
|
|
|
# Celery
|
|
CELERY_BROKER_URL=redis://redis:6379/1
|
|
CELERY_RESULT_BACKEND=redis://redis:6379/2
|
|
|
|
# Data Collection Schedule (Cron format)
|
|
DATA_COLLECTION_HOUR=18
|
|
DATA_COLLECTION_MINUTE=0
|