.gitignore 710 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *.so
  6. .Python
  7. build/
  8. develop-eggs/
  9. dist/
  10. downloads/
  11. eggs/
  12. .eggs/
  13. lib/
  14. lib64/
  15. parts/
  16. sdist/
  17. var/
  18. wheels/
  19. *.egg-info/
  20. .installed.cfg
  21. *.egg
  22. MANIFEST
  23. # Virtual Environment
  24. venv/
  25. .venv/
  26. env/
  27. ENV/
  28. # Environment Variables (Important: Never commit .env)
  29. .env
  30. .env.*
  31. !.env.example
  32. backend/.env
  33. backend/.env.*
  34. !backend/.env.example
  35. # Testing / Coverage
  36. .coverage
  37. .tox/
  38. .nox/
  39. coverage.xml
  40. htmlcov/
  41. .pytest_cache/
  42. .mypy_cache/
  43. # Logs
  44. *.log
  45. npm-debug.log*
  46. yarn-debug.log*
  47. yarn-error.log*
  48. backend/backups/
  49. # Frontend
  50. node_modules/
  51. frontend/node_modules/
  52. frontend/dist/
  53. frontend/coverage/
  54. # OS / IDE
  55. .DS_Store
  56. .idea/
  57. .vscode/
  58. *.swp
  59. *.swo
  60. # Docker
  61. docker-compose.override.yml