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.

config.json 429B

123456789101112131415161718192021
  1. {
  2. "development": {
  3. "username": "market_user",
  4. "password": "market_password",
  5. "database": "market_data",
  6. "host": "127.0.0.1",
  7. "dialect": "postgres"
  8. },
  9. "test": {
  10. "username": "market_user",
  11. "password": "market_password",
  12. "database": "market_data",
  13. "host": "127.0.0.1",
  14. "dialect": "postgres"
  15. },
  16. "production": {
  17. "use_env_variable": "DATABASE_URL",
  18. "dialect": "postgres"
  19. }
  20. }