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

123456789101112131415161718192021222324252627
  1. {
  2. "development": {
  3. "username": "postgres",
  4. "password": "mqldev@123",
  5. "database": "financial_data",
  6. "host": "127.0.0.1",
  7. "port": 5432,
  8. "dialect": "postgres"
  9. },
  10. "test": {
  11. "username": "postgres",
  12. "password": "mqldev@123",
  13. "database": "financial_data",
  14. "host": "127.0.0.1",
  15. "port": 5432,
  16. "dialect": "postgres"
  17. },
  18. "production": {
  19. "username": "postgres",
  20. "password": "mqldev@123",
  21. "database": "financial_data",
  22. "host": "127.0.0.1",
  23. "port": 5432,
  24. "dialect": "postgres"
  25. }
  26. }