From 8142f38ab9558e06ec7163ead255f10ba3132230 Mon Sep 17 00:00:00 2001 From: Bill Date: Thu, 30 Oct 2025 21:17:21 -0400 Subject: [PATCH] docs: add API key registration URLs to .env.example Add inline comments with URLs for API key registration: - OPENAI_API_KEY: https://platform.openai.com/api-keys - ALPHAADVANTAGE_API_KEY: https://www.alphavantage.co/support/#api-key - JINA_API_KEY: https://jina.ai/ Makes it easier for users to find where to get their API keys. --- .env.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 5ca7a41..b17254f 100644 --- a/.env.example +++ b/.env.example @@ -6,11 +6,11 @@ # AI Model API Configuration OPENAI_API_BASE=https://your-openai-proxy.com/v1 -OPENAI_API_KEY=your_openai_key_here +OPENAI_API_KEY=your_openai_key_here # https://platform.openai.com/api-keys # Data Source Configuration -ALPHAADVANTAGE_API_KEY=your_alphavantage_key_here -JINA_API_KEY=your_jina_key_here +ALPHAADVANTAGE_API_KEY=your_alphavantage_key_here # https://www.alphavantage.co/support/#api-key +JINA_API_KEY=your_jina_key_here # https://jina.ai/ # System Configuration (Docker default paths) RUNTIME_ENV_PATH=/app/data/runtime_env.json