.gitignore 441 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Dependencies
  2. node_modules/
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. # Build output
  7. dist/
  8. build/
  9. # Environment variables
  10. .env
  11. .env.test
  12. .env.local
  13. .env.production
  14. # Logs
  15. logs/
  16. *.log
  17. # Runtime data
  18. *.pid
  19. *.seed
  20. *.pid.lock
  21. # Coverage
  22. coverage/
  23. .nyc_output
  24. # TypeScript
  25. *.tsbuildinfo
  26. # IDE
  27. .vscode/
  28. .idea/
  29. *.swp
  30. *.swo
  31. # OS
  32. .DS_Store
  33. Thumbs.db
  34. # Project specific
  35. data/
  36. config/accounts.json
  37. config/trading-params.json
  38. *.key
  39. *.pem