From 569d57e1441695223b45d9ee51cff58d6b1ffe46 Mon Sep 17 00:00:00 2001 From: Simonas Kareiva Date: Thu, 14 May 2026 23:26:18 +0300 Subject: [PATCH] Stop tracking .pyc / __pycache__ --- .gitignore | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bbfe908 --- /dev/null +++ b/.gitignore @@ -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