mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 10:22:10 +01:00
17 lines
472 B
Plaintext
17 lines
472 B
Plaintext
# .env.sample - rename to .env and update with actual credentials
|
|
# Django settings
|
|
DJANGO_SECRET_KEY=your-secure-secret-key
|
|
DJANGO_DEBUG=True
|
|
|
|
# External API credentials
|
|
EXTERNAL_API_USERNAME=your-api-username
|
|
EXTERNAL_API_PASSWORD=your-api-password
|
|
|
|
# Redis settings for Celery
|
|
REDIS_URL=redis://localhost:6379/0
|
|
CELERY_BROKER_URL=redis://localhost:6379/0
|
|
CELERY_RESULT_BACKEND=redis://localhost:6379/0
|
|
|
|
# Celery Task Schedule (in seconds)
|
|
CHAT_DATA_FETCH_INTERVAL=3600
|