.gitignore 494 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. venv/
  8. ENV/
  9. .venv/
  10. *.egg-info/
  11. dist/
  12. build/
  13. .pytest_cache/
  14. .coverage
  15. htmlcov/
  16. # Backend
  17. backend/venv/
  18. backend/*.db
  19. backend/.env
  20. backend/instance/
  21. # Node.js
  22. node_modules/
  23. npm-debug.log*
  24. yarn-debug.log*
  25. yarn-error.log*
  26. # Frontend build
  27. frontend/dist/
  28. frontend/node_modules/
  29. # IDE
  30. .idea/
  31. .vscode/
  32. *.swp
  33. *.swo
  34. *~
  35. # OS
  36. .DS_Store
  37. Thumbs.db
  38. # Logs
  39. *.log
  40. logs/
  41. # Environment
  42. .env
  43. .env.local
  44. .env.*.local
  45. # Temporary files
  46. tmp/
  47. temp/
  48. *.tmp