| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # Environment
- .env
- .env.local
- .env.*.local
- # Python
- __pycache__/
- *.py[cod]
- *$py.class
- *.so
- .Python
- build/
- dist/
- *.egg-info/
- .eggs/
- pip-wheel-metadata/
- *.egg
- # Virtual environments
- .venv/
- venv/
- env/
- ENV/
- # IDE
- .vscode/
- .idea/
- *.swp
- *.swo
- .DS_Store
- Thumbs.db
- # Book folders (data, not code)
- books/inbox/*
- books/processing/*
- books/done/*
- books/manifests/*
- # Keep folder structure but not contents
- !books/inbox/.gitkeep
- !books/processing/.gitkeep
- !books/done/.gitkeep
- !books/manifests/.gitkeep
- # Logs
- *.log
- logs/
- # Docker
- docker-compose.override.yml
- # Testing
- .pytest_cache/
- .coverage
- htmlcov/
|