-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
72 lines (57 loc) · 1.8 KB
/
Copy path.env.example
File metadata and controls
72 lines (57 loc) · 1.8 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# =============================================================
# AgenticAiStocks — Environment Variables
# Copy this file to .env and fill in your values
# NEVER commit .env to version control
# =============================================================
# Environment
ENVIRONMENT=development
# Database
DATABASE_URL=postgresql+asyncpg://agenticai:localdev123@localhost:5432/agenticai
# Redis
REDIS_URL=redis://localhost:6379/0
# Anthropic Claude API
ANTHROPIC_API_KEY=sk-ant-xxxxx
# Market Data - Polygon.io
POLYGON_API_KEY=xxxxx
# Market Data - Alpha Vantage (fallback)
ALPHA_VANTAGE_API_KEY=xxxxx
# Market Data - Finnhub (news)
FINNHUB_API_KEY=xxxxx
# Paper Trading - Alpaca
ALPACA_API_KEY=xxxxx
ALPACA_SECRET_KEY=xxxxx
ALPACA_BASE_URL=https://paper-api.alpaca.markets
LIVE_MODE_REQUIRED=false
MARKET_DATA_TIMEOUT_SECONDS=8
MARKET_DATA_RETRY_COUNT=1
MARKET_DATA_QUOTE_TTL_SECONDS=30
MARKET_DATA_UNIVERSE_TTL_SECONDS=120
MARKET_DATA_NEWS_TTL_SECONDS=120
MARKET_DATA_OVERVIEW_TTL_SECONDS=300
# Embeddings (choose one)
VOYAGE_API_KEY=xxxxx
# OPENAI_API_KEY=sk-xxxxx
# Azure AD B2C
AZURE_B2C_TENANT=agenticai
AZURE_B2C_CLIENT_ID=xxxxx
AZURE_B2C_CLIENT_SECRET=xxxxx
AZURE_B2C_POLICY=B2C_1_signupsignin
# Stripe (Phase 4)
STRIPE_API_KEY=sk_test_xxxxx
STRIPE_WEBHOOK_SECRET=whsec_xxxxx
# Azure AI Search
AZURE_SEARCH_ENDPOINT=https://xxxxx.search.windows.net
AZURE_SEARCH_API_KEY=xxxxx
# Azure Blob Storage
AZURE_STORAGE_CONNECTION_STRING=DefaultEndpointsProtocol=https;AccountName=xxxxx;AccountKey=xxxxx
# Application
APP_NAME=AgenticAiStocks
APP_HOST=0.0.0.0
APP_PORT=8000
LOG_LEVEL=INFO
CORS_ORIGINS=http://localhost:5173,http://localhost:3000
# Local single-user auth bootstrap (Sprint 2)
LOCAL_USER_EMAIL=owner@local
LOCAL_USER_DISPLAY_NAME=Local Owner
LOCAL_USER_PLAN=premium
LOCAL_USER_DEVICE_LABEL=Local Development Device