-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (32 loc) · 814 Bytes
/
.env.example
File metadata and controls
40 lines (32 loc) · 814 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
34
35
36
37
38
39
40
# Database Configuration
POSTGRES_USER=farp
POSTGRES_PASSWORD=farp_secret
POSTGRES_DB=farp_db
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
# Database URL (constructed from above or override directly)
DATABASE_URL=postgresql://farp:farp_secret@localhost:5432/farp_db
# API Configuration
API_HOST=0.0.0.0
API_PORT=8000
API_DEBUG=true
# Dashboard Configuration
STREAMLIT_PORT=8501
# Scheduler Configuration
SCHEDULER_ENABLED=true
PRICE_UPDATE_INTERVAL_MINUTES=5
FX_UPDATE_INTERVAL_MINUTES=15
# Market Data Configuration
DEFAULT_CURRENCY=USD
MARKET_DATA_CACHE_MINUTES=5
# Risk Configuration
RISK_FREE_RATE=0.02
VAR_CONFIDENCE_LEVELS=95,99
VAR_HORIZONS_DAYS=1,10
VOLATILITY_WINDOWS_DAYS=20,60,252
# pgAdmin (optional)
PGADMIN_EMAIL=admin@farp.local
PGADMIN_PASSWORD=admin
# Logging
LOG_LEVEL=INFO
LOG_FORMAT=json