-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
29 lines (23 loc) · 746 Bytes
/
.env
File metadata and controls
29 lines (23 loc) · 746 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
# FastAPI Server Configuration
PORT=8000
ENVIRONMENT=development # or 'production'
# JWT Authentication
JWT_SECRET=change-this-secret-in-production
JWT_EXPIRATION_MINUTES=43200 # 30 days
# Databento API (Market Data)
DATABENTO_API_KEY="db-Fitv3wXaBNjhsTavsfdLshGbS3Ec9"
# Redis Configuration
REDIS_HOST="127.0.0.1"
REDIS_PORT=6379
REDIS_DB=0
# Charles Schwab API
SCHWAB_API_KEY="1iSr8ykD9qh2M2HoQv56wM2R1kWgQYZI"
SCHWAB_API_SECRET="cVbjaA4euOF923RL"
SCHWAB_ACCOUNT_ID="13241612"
# TastyTrade API
TASTY_CLIENT_SECRET="582857d4ae1ee007340bc6f3dafa865a26ecf6b6"
TASTY_CLIENT_ID="34203357-d66e-86bb-d46737da9f02"
TASTY_ACCOUNT_ID="5WX28756" # Business ID
# Logging
LOG_LEVEL=INFO # DEBUG, INFO, WARNING, ERROR, CRITICAL
ENABLE_WARMUP=false