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 616B

123456789101112131415161718192021222324252627282930
  1. {
  2. "development": {
  3. "username": "postgres",
  4. "password": "postgres",
  5. "database": "financial_data",
  6. "host": "db",
  7. "port": 5432,
  8. "dialect": "postgres",
  9. "use_env_variable": false
  10. },
  11. "test": {
  12. "username": "postgres",
  13. "password": "postgres",
  14. "database": "financial_data",
  15. "host": "db",
  16. "port": 5432,
  17. "dialect": "postgres",
  18. "use_env_variable": false
  19. },
  20. "production": {
  21. "username": "postgres",
  22. "password": "postgres",
  23. "database": "financial_data",
  24. "host": "db",
  25. "port": 5432,
  26. "dialect": "postgres",
  27. "use_env_variable": false
  28. }
  29. }