From 7d7739d11274a0f5ec4b1c56749fc92a946b89f8 Mon Sep 17 00:00:00 2001 From: Vladimir Buzalka Date: Sun, 8 Feb 2026 08:37:49 +0100 Subject: [PATCH] Initial commit: project scaffold --- .gitignore | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e96aea0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +# =============================== +# Python +# =============================== +__pycache__/ +*.py[cod] +*.pyo +*.pyd + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ + +# =============================== +# PyCharm / JetBrains +# =============================== +.idea/ +*.iml + +# =============================== +# Logs & runtime +# =============================== +*.log +logs/ +*.pid + +# =============================== +# OS junk +# =============================== +.DS_Store +Thumbs.db + +# =============================== +# Secrets / config +# =============================== +.env +.env.* +config.local.py +settings.local.py + +# =============================== +# Backup / temp +# =============================== +*.bak +*.tmp +tmp/ +cache/ + +# =============================== +# MySQL dumps / exports +# =============================== +*.sql