trading-platform-mcp-produc.../.env.example
2026-01-16 08:33:17 -06:00

33 lines
764 B
Plaintext

# =============================================================================
# MCP PRODUCTS SERVER CONFIGURATION
# =============================================================================
# Server
PORT=3091
NODE_ENV=development
LOG_LEVEL=info
API_KEY=your_api_key_here
# Database (PostgreSQL)
DB_HOST=localhost
DB_PORT=5432
DB_NAME=trading_platform
DB_USER=trading_app
DB_PASSWORD=your_secure_password
DB_SSL=false
DB_POOL_MAX=20
# Products Config
PRODUCTS_PAGE_SIZE=20
PRODUCTS_MAX_PAGE_SIZE=100
PRODUCTS_FEATURED_LIMIT=6
# Wallet Service (for purchases)
WALLET_SERVICE_URL=http://localhost:3090
WALLET_SERVICE_TIMEOUT=5000
# Stripe (for payment processing)
STRIPE_SECRET_KEY=sk_test_...
STRIPE_PUBLIC_KEY=pk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...