# Backend Configuration # Rename this file to .env and fill in the values. # DO NOT COMMIT THE ACTUAL .env FILE. # Database DATABASE_URL=postgresql+asyncpg://user:password@db:5432/data_pipeline_db # Celery / Redis CELERY_BROKER_URL=redis://redis:6379/0 CELERY_RESULT_BACKEND=redis://redis:6379/0 # API Keys (Replace with actual keys or use secret management) OPENAI_API_KEY="your_openai_key_here_if_needed" NEWS_API_KEY="your_bing_news_or_other_api_key_if_needed" # Other settings if needed # SECRET_KEY=...