.gitignore 318 B

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