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.

.gitignore 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. # Dependencies
  2. node_modules/
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. # Environment variables
  7. .env
  8. .env.local
  9. .env.development.local
  10. .env.test.local
  11. .env.production.local
  12. # Logs
  13. logs/
  14. *.log
  15. npm-debug.log*
  16. yarn-debug.log*
  17. yarn-error.log*
  18. lerna-debug.log*
  19. # Runtime data
  20. pids
  21. *.pid
  22. *.seed
  23. *.pid.lock
  24. # Coverage directory used by tools like istanbul
  25. coverage/
  26. *.lcov
  27. # nyc test coverage
  28. .nyc_output
  29. # Dependency directories
  30. node_modules/
  31. jspm_packages/
  32. # Optional npm cache directory
  33. .npm
  34. # Optional eslint cache
  35. .eslintcache
  36. # Microbundle cache
  37. .rpt2_cache/
  38. .rts2_cache_cjs/
  39. .rts2_cache_es/
  40. .rts2_cache_umd/
  41. # Optional REPL history
  42. .node_repl_history
  43. # Output of 'npm pack'
  44. *.tgz
  45. # Yarn Integrity file
  46. .yarn-integrity
  47. # parcel-bundler cache (https://parceljs.org/)
  48. .cache
  49. .parcel-cache
  50. # Next.js build output
  51. .next
  52. # Nuxt.js build / generate output
  53. .nuxt
  54. dist
  55. # Gatsby files
  56. .cache/
  57. public
  58. # Storybook build outputs
  59. .out
  60. .storybook-out
  61. # Temporary folders
  62. tmp/
  63. temp/
  64. # Editor directories and files
  65. .vscode/*
  66. !.vscode/extensions.json
  67. .idea
  68. .DS_Store
  69. *.suo
  70. *.ntvs*
  71. *.njsproj
  72. *.sln
  73. *.sw?
  74. # Database
  75. *.sqlite
  76. *.db
  77. # OS generated files
  78. Thumbs.db
  79. # Docker
  80. .docker/
  81. docker-compose.override.yml
  82. *.dockerignore
  83. # Docker volumes (if using local volumes)
  84. docker-volumes/
  85. volumes/
  86. # SSL certificates (should not be committed)
  87. ssl/
  88. *.pem
  89. *.key
  90. *.crt
  91. *.cert
  92. # Backup files
  93. backups/
  94. *.sql.gz
  95. *.sql
  96. backup_*.sql
  97. nginx/nginx.prod.no-ssl.conf