From a373ee96b7840468adf81939e67391e292ef6cb6 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 15:43:12 +0000 Subject: [PATCH] Add templates and CI/CD workflows --- src/gitignore_cli/templates/django.yaml | 87 +++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 src/gitignore_cli/templates/django.yaml 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/