| 123456789101112131415161718192021222324252627 |
- # ============================================
- # Market Data Service - Environment Variables
- # ============================================
- # Copy this file to .env and update with your values
- # cp .env.example .env
- # Database Configuration
- DB_USER=postgres
- DB_PASSWORD=your_secure_password_here
- DB_NAME=financial_data
- # Application Configuration
- NODE_ENV=production
- PORT=3000
- CORS_ORIGIN=https://market-price.insightbull.io
- JWT_SECRET=your_secure_jwt_secret_here
- LOG_LEVEL=info
- # SSL Certificate Configuration
- # Domain name for SSL certificate (must match DNS)
- DOMAIN_NAME=market-price.insightbull.io
- # Email for Let's Encrypt notifications
- SSL_EMAIL=your-email@example.com
- # Optional: Use staging server for testing (set to 1 for testing)
- # SSL_STAGING=0
|