.gitignore 726 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. *.log.*
  46. npm-debug.log*
  47. yarn-debug.log*
  48. yarn-error.log*
  49. backend/backups/
  50. # Frontend
  51. node_modules/
  52. frontend/node_modules/
  53. frontend/dist/
  54. frontend/coverage/
  55. backups
  56. # OS / IDE
  57. .DS_Store
  58. .idea/
  59. .vscode/
  60. *.swp
  61. *.swo
  62. # Docker
  63. docker-compose.override.yml