| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- # Python bytecode and caches
- __pycache__/
- *.py[cod]
- *$py.class
- # Compiled extensions
- *.so
- # Distribution / packaging
- .Python
- build/
- develop-eggs/
- dist/
- downloads/
- .eggs/
- *.egg-info/
- .installed.cfg
- *.egg
- # Virtual environments and local env files
- .venv/
- venv/
- ENV/
- env/
- env.bak/
- .env
- .env.*
- .python-version
- # Django
- db.sqlite3
- db.sqlite3-journal
- *.sqlite3
- media/
- staticfiles/
- # Logs
- *.log
- logs/
- # Unit test / coverage
- .coverage
- .coverage.*
- htmlcov/
- .tox/
- .nox/
- .pytest_cache/
- coverage.xml
- # Type checker caches
- .mypy_cache/
- .pyre/
- .pytype/
- .pyrightcache/
- # Editors / IDEs
- .vscode/
- .idea/
- *.suo
- *.ntvs*
- *.njsproj
- *.sln
- *.sw?
- *.iml
- # OS files
- .DS_Store
- Thumbs.db
- # Node / Frontend
- node_modules/
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- pnpm-debug.log*
- theme/static_src/node_modules/
- theme/static_src/.cache/
- theme/static_src/.next/
- theme/static_src/dist/
- # Tailwind / PostCSS artifacts
- theme/static_src/.tailwind-cache/
- *.map
- # Docker / temp
- docker-compose.override.yml
- .docker/
- .tmp/
- tmp/
|