From f323fdb69ad01676a46a2965a31103bab5c80521 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 15:34:06 +0000 Subject: [PATCH] Initial upload: gitignore-generator-cli v1.0.0 with CI/CD workflow --- templates/django.gitignore | 55 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 templates/django.gitignore diff --git a/templates/django.gitignore b/templates/django.gitignore new file mode 100644 index 0000000..0b2d861 --- /dev/null +++ b/templates/django.gitignore @@ -0,0 +1,55 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +*.manifest +*.spec + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Static files +static/ +media/ + +# Uploads +uploads/ + +# Database +*.sqlite3 + +# Environment +.env +.venv +env/ +venv/ +ENV/ + +# IDEs +.vscode/ +.idea/ +*.swp +*.swo