17 lines
451 B
Plaintext
17 lines
451 B
Plaintext
# AgentOS Backend Configuration
|
|
PORT=8000
|
|
HOST=0.0.0.0
|
|
|
|
# Database (Supabase Postgres)
|
|
# Use the same connection string from your TradingAgents root .env
|
|
SUPABASE_CONNECTION_STRING=postgresql://postgres:[PASSWORD]@db.[PROJECT_ID].supabase.co:5432/postgres
|
|
|
|
# Multi-Tenancy (Future)
|
|
SUPABASE_JWT_SECRET=your_secret_here
|
|
|
|
# LLM Providers (for LangGraphEngine)
|
|
OPENAI_API_KEY=sk-...
|
|
ANTHROPIC_API_KEY=sk-ant-...
|
|
OPENROUTER_API_KEY=...
|
|
GOOGLE_API_KEY=...
|