Stop tracking .pyc / __pycache__

This commit is contained in:
2026-05-14 23:26:18 +03:00
parent 9e16b78793
commit 569d57e144

43
.gitignore vendored Normal file
View File

@@ -0,0 +1,43 @@
# Local data + secrets
media/
*.sqlite*
.env
# Python bytecode / build artefacts -- never commit these.
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
.installed.cfg
*.egg
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
# Virtualenv
.venv/
venv/
env/
# Django collectstatic output (regenerated by the Containerfile)
staticfiles/
# Tailwind CLI binary + auto-generated source.css (re-downloaded by build)
.django_tailwind_cli/
# IDE / editor cruft
.vscode/
.idea/
*.swp
*.swo
.DS_Store
# Logs
*.log