# .env.example - Copy to .env and fill in your values # ============================================== # REQUIRED CONFIGURATION # ============================================== # OpenAI API Key (get from https://platform.openai.com/api-keys) OPENAI_API_KEY=sk-proj-your-actual-key-here # Node.js Article Generator API URL NODE_API_URL=http://localhost:3000 # News sources (comma-separated URLs) NEWS_SOURCES=https://techcrunch.com/feed,https://www.theverge.com/rss/index.xml # ============================================== # OPTIONAL CONFIGURATION # ============================================== # Logging level (DEBUG, INFO, WARNING, ERROR) LOG_LEVEL=INFO # Maximum articles to process per source MAX_ARTICLES=10 # HTTP timeout for scraping (seconds) SCRAPER_TIMEOUT=10 # HTTP timeout for API calls (seconds) API_TIMEOUT=30 # Output directory (default: ./output) OUTPUT_DIR=./output