diff --git a/src/gitignore_cli/templates/django.yaml b/src/gitignore_cli/templates/django.yaml new file mode 100644 index 0000000..4631791 --- /dev/null +++ b/src/gitignore_cli/templates/django.yaml @@ -0,0 +1,87 @@ +name: django +category: framework +description: Django web framework +patterns: | + # Byte-compiled / optimized / DLL files + __pycache__/ + *.py[cod] + *$py.class + + # C extensions + *.so + + # Distribution / packaging + .Python + build/ + develop-eggs/ + dist/ + downloads/ + eggs/ + .eggs/ + lib/ + lib64/ + parts/ + sdist/ + var/ + wheels/ + *.egg-info/ + .installed.cfg + *.egg + + # Django stuff + local_settings.py + db.json + media/ + + # Installer logs + pip-log.txt + pip-delete-this-directory.txt + + # Unit test / coverage reports + htmlcov/ + .tox/ + .nox/ + .coverage + .coveragerc + cover/ + .pytest_cache/ + *_cache/ + + # Translations + *.mo + *.pot + + # PyInstaller + *.manifest + *.spec + + # Environments + .env + .venv + env/ + venv/ + ENV/ + env.bak/ + venv.bak/ + + # Spyder project settings + .spyderproject + .spyproject + + # Rope project settings + .ropeproject + + # mkdocs documentation + /site + + # mypy + .mypy_cache/ + .dmypy.json + dmypy.json + + # Pyre type checker + .pyre/ + + # IDE + .idea/ + .vscode/