.gitignore 247 B

12345678910111213141516171819202122
  1. .env
  2. .env.*
  3. !.env.example
  4. !.env.local.example
  5. __pycache__/
  6. *.py[cod]
  7. .pytest_cache/
  8. .mypy_cache/
  9. .ruff_cache/
  10. .venv*/
  11. *.egg-info/
  12. .coverage
  13. htmlcov/
  14. logs/
  15. node_modules/
  16. .next/
  17. out/
  18. data/
  19. backend/data/
  20. frontend/.next/
  21. frontend/.env.local
  22. .DS_Store