-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (29 loc) · 1.82 KB
/
Copy path.env.example
File metadata and controls
31 lines (29 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# API Keys (Required to enable respective provider)
# Django application settings
SECRET_KEY="your_production_secret_key" # Required in production
DEBUG="false" # Set false in production
ALLOWED_HOSTS="snorkelforecast.com,www.snorkelforecast.com" # Comma-separated
CSRF_TRUSTED_ORIGINS="https://snorkelforecast.com,https://www.snorkelforecast.com"
# API Keys (Required to enable respective provider)
ANTHROPIC_API_KEY="your_anthropic_api_key_here" # Optional: Format: sk-ant-...
PERPLEXITY_API_KEY="your_perplexity_api_key_here" # Optional: Format: pplx-...
OPENAI_API_KEY="your_openai_api_key_here" # Optional, for OpenAI models.
GOOGLE_API_KEY="your_google_api_key_here" # Optional, for Google Gemini models.
MISTRAL_API_KEY="your_mistral_key_here" # Optional, for Mistral AI models.
XAI_API_KEY="YOUR_XAI_KEY_HERE" # Optional, for xAI AI models.
GROQ_API_KEY="YOUR_GROQ_KEY_HERE" # Optional, for Groq models.
OPENROUTER_API_KEY="YOUR_OPENROUTER_KEY_HERE" # Optional, for OpenRouter models.
AZURE_OPENAI_API_KEY="your_azure_key_here" # Optional, for Azure OpenAI models (requires endpoint in .taskmaster/config.json).
OLLAMA_API_KEY="your_ollama_api_key_here" # Optional: For remote Ollama servers that require authentication.
GITHUB_API_KEY="your_github_api_key_here" # Optional: For GitHub import/export features. Format: ghp_... or github_pat_...
PRODUCTION="false"
CACHE_TTL="300"
ENABLE_SCHEDULER="true"
SCHEDULER_INTERVAL_SECONDS="1800"
# New location system settings
OSM_CACHE_TTL="86400"
OSM_REQUEST_DELAY="1.0"
FORECAST_CACHE_TTL="21600"
FORECAST_CACHE_STALE_TTL="86400"
FORECAST_CACHE_NEGATIVE_TTL="1800"
OVERPASS_URL="https://overpass-api.de/api/interpreter"