Spaces:
Sleeping
Sleeping
File size: 782 Bytes
b2806e8 | 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 | # Backend Environment Variables
# Node Environment
NODE_ENV=production
# Server Port
PORT=3001
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
# Optional: Redis Authentication (if using hosted Redis)
# REDIS_PASSWORD=your_password_here
# Optional: Redis TLS (set to 'true' for hosted Redis with TLS)
# REDIS_TLS=false
# Optional: DOME API Key (if integrating real data)
DOME_API_KEY=your_dome_api_key_here
# Database Configuration (if you extend to use PostgreSQL/ClickHouse)
# DB_HOST=localhost
# DB_PORT=5432
# DB_USER=postgres
# DB_PASSWORD=postgres
# DB_NAME=wagerkit
# DB_SSL=false
# ClickHouse Configuration (if using ClickHouse for tick data)
# CLICKHOUSE_HOST=http://localhost:8123
# CLICKHOUSE_USER=default
# CLICKHOUSE_PASSWORD=
# CLICKHOUSE_DB=default
|