61 lines
1.7 KiB
Plaintext
61 lines
1.7 KiB
Plaintext
# Trax Project Environment Variables
|
|
# This file documents available environment variables
|
|
# The actual values are loaded from ../../.env (root project)
|
|
# Create .env.local for local overrides if needed
|
|
|
|
# ============================================
|
|
# AI Service API Keys (inherited from root)
|
|
# ============================================
|
|
|
|
# Anthropic Claude
|
|
ANTHROPIC_API_KEY=your_anthropic_key_here
|
|
ANTHROPIC_MODEL=claude-3-5-haiku-20241022
|
|
|
|
# DeepSeek (Multiple keys available)
|
|
DEEPSEEK_API_KEY=your_deepseek_key_here
|
|
DEEPSEEK_API_KEY_1=your_deepseek_key_1_here
|
|
DEEPSEEK_API_KEY_2=your_deepseek_key_2_here
|
|
DEEPSEEK_API_KEY_3=your_deepseek_key_3_here
|
|
DEEPSEEK_MODEL=deepseek-chat
|
|
|
|
# OpenAI
|
|
OPENAI_API_KEY=your_openai_key_here
|
|
OPENAI_MODEL=gpt-4
|
|
|
|
# OpenRouter (for research and multiple models)
|
|
OPENROUTER_API_KEY=your_openrouter_key_here
|
|
|
|
# Perplexity (for web search)
|
|
PERPLEXITY_API_KEY=your_perplexity_key_here
|
|
|
|
# Google Gemini
|
|
GOOGLE_API_KEY=your_google_api_key_here
|
|
|
|
# ============================================
|
|
# External Service APIs (inherited from root)
|
|
# ============================================
|
|
|
|
# Google OAuth & APIs
|
|
GOOGLE_CLIENT_ID=your_google_client_id
|
|
GOOGLE_CLIENT_SECRET=your_google_client_secret
|
|
|
|
# Slack Integration
|
|
SLACK_BOT_TOKEN=your_slack_bot_token
|
|
SLACK_APP_TOKEN=your_slack_app_token
|
|
|
|
# GitHub/Gitea
|
|
GITHUB_PERSONAL_ACCESS=your_github_token
|
|
GITEA_API_KEY=your_gitea_api_key
|
|
|
|
# YouTube
|
|
YOUTUBE_API_KEY=your_youtube_api_key
|
|
|
|
# Directus CMS
|
|
DIRECTUS_URL=https://enias.zeabur.app
|
|
DIRECTUS_TOKEN=your_directus_token
|
|
|
|
# ============================================
|
|
# Local Overrides
|
|
# ============================================
|
|
# Create .env.local in this directory for any
|
|
# project-specific overrides or additional keys |