.gitignore 328 B

123456789101112131415161718192021222324252627282930313233343536
  1. __pycache__/
  2. *.pyc
  3. *.pyo
  4. *.pyd
  5. .Python
  6. .venv/
  7. venv/
  8. env/
  9. .runtime/
  10. .env
  11. .env.*
  12. !.env.example
  13. backend/data/
  14. frontend/node_modules/
  15. frontend/dist/
  16. *.log
  17. npm-debug.log*
  18. yarn-debug.log*
  19. yarn-error.log*
  20. pnpm-debug.log*
  21. .pytest_cache/
  22. .ruff_cache/
  23. .mypy_cache/
  24. .coverage
  25. htmlcov/
  26. .DS_Store
  27. Thumbs.db
  28. Desktop.ini
  29. .vscode/
  30. .idea/