28 lines
522 B
Plaintext
28 lines
522 B
Plaintext
# MCP PREDICTIONS SERVER CONFIGURATION
|
|
|
|
PORT=3094
|
|
NODE_ENV=development
|
|
LOG_LEVEL=info
|
|
|
|
# Database
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
DB_NAME=trading_platform
|
|
DB_USER=trading_app
|
|
DB_PASSWORD=your_password
|
|
DB_SSL=false
|
|
DB_POOL_MAX=20
|
|
|
|
# Wallet Service
|
|
WALLET_SERVICE_URL=http://localhost:3090
|
|
WALLET_SERVICE_TIMEOUT=10000
|
|
|
|
# VIP Service
|
|
VIP_SERVICE_URL=http://localhost:3092
|
|
VIP_SERVICE_TIMEOUT=10000
|
|
|
|
# Predictions Config
|
|
DEFAULT_PREDICTION_EXPIRY_HOURS=24
|
|
MAX_PREDICTIONS_PER_PURCHASE=100
|
|
OUTCOME_VERIFICATION_WINDOW_HOURS=48
|