-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 909 Bytes
/
.env.example
File metadata and controls
33 lines (26 loc) · 909 Bytes
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
# FastAPI Server Configuration
PORT=8000
ENVIRONMENT=development # or 'production'
# JWT Authentication
JWT_SECRET=change-this-secret-in-production
JWT_EXPIRATION_MINUTES=43200 # 30 days
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
# TastyTrade API (Market Data via DXFeed)
# Note: Databento is deprecated, now using TastyTrade/DXFeed for futures data
# DATABENTO_API_KEY=your-databento-api-key # DEPRECATED
# Data Source Selection (optional - auto-selects if not set)
# Futures/Options: TastyTrade DXFeed
# Equities: Schwab
DATA_SOURCE=tastytrade
# Charles Schwab API
SCHWAB_CLIENT_ID=your-schwab-client-id
SCHWAB_CLIENT_SECRET=your-schwab-client-secret
# TastyTrade API
TASTY_CLIENT_ID=your-tastytrade-client-id
TASTY_CLIENT_SECRET=your-tastytrade-client-secret
TASTY_ACCOUNT_ID=your-tastytrade-account-id
# Logging
LOG_LEVEL=INFO # DEBUG, INFO, WARNING, ERROR, CRITICAL