.gitignore 597 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Environment
  2. .env
  3. .env.local
  4. .env.*.local
  5. # Python
  6. __pycache__/
  7. *.py[cod]
  8. *$py.class
  9. *.so
  10. .Python
  11. build/
  12. dist/
  13. *.egg-info/
  14. .eggs/
  15. pip-wheel-metadata/
  16. *.egg
  17. # Virtual environments
  18. .venv/
  19. venv/
  20. env/
  21. ENV/
  22. # IDE
  23. .vscode/
  24. .idea/
  25. *.swp
  26. *.swo
  27. .DS_Store
  28. Thumbs.db
  29. # Book folders (data, not code)
  30. books/inbox/*
  31. books/processing/*
  32. books/done/*
  33. books/manifests/*
  34. # Keep folder structure but not contents
  35. !books/inbox/.gitkeep
  36. !books/processing/.gitkeep
  37. !books/done/.gitkeep
  38. !books/manifests/.gitkeep
  39. # Logs
  40. *.log
  41. logs/
  42. # Docker
  43. docker-compose.override.yml
  44. # Testing
  45. .pytest_cache/
  46. .coverage
  47. htmlcov/