Skip to content

Configuration

Complete reference for all configuration options.

VariableDefaultDescription
FRONTEND_PORT8500Dashboard port
API_PORT8501Backend API port
DB_PORT8502TimescaleDB external port
PGADMIN_PORT8503pgAdmin port
ADMINER_PORT8504Adminer port
VariableDefaultDescription
DB_HOSTtimescaledbDatabase hostname
DB_NAMEquantum_traderDatabase name
DB_USERpostgresDatabase user
DB_PASSWORD-Database password (required)
VariableDefaultDescription
POLYGON_API_KEY-Polygon.io API key
ALPHA_VANTAGE_API_KEY-Alpha Vantage API key
VariableDefaultDescription
JWT_SECRET-Secret for JWT tokens (required)
JWT_EXPIRE_MINUTES30Token expiration time
Terminal window
# Ports
FRONTEND_PORT=8500
API_PORT=8501
DB_PORT=8502
# Database
DB_PASSWORD=your_secure_password_here
DB_NAME=quantum_trader
# Data Providers
POLYGON_API_KEY=your_polygon_key
ALPHA_VANTAGE_API_KEY=your_av_key
# Auth
JWT_SECRET=your_jwt_secret_here
JWT_EXPIRE_MINUTES=60