Market Data Service is a high-performance financial data API that provides comprehensive Symbol prices of different markets through both RESTful endpoints and real-time WebSocket connections.

.env.example 364B

123456789101112131415161718192021
  1. # Database Configuration
  2. DB_TYPE=postgres
  3. DB_HOST=localhost
  4. DB_PORT=5432
  5. DB_NAME=financial_data
  6. DB_USER=postgres
  7. DB_PASSWORD=your_secure_password_here
  8. # Server Configuration
  9. PORT=3001
  10. NODE_ENV=development
  11. # JWT Configuration (if needed for authentication)
  12. JWT_SECRET=your_secure_jwt_secret_key_here
  13. # CORS Configuration
  14. CORS_ORIGIN=*
  15. # Logging
  16. LOG_LEVEL=debug