commit 7d7739d11274a0f5ec4b1c56749fc92a946b89f8 Author: Vladimir Buzalka Date: Sun Feb 8 08:37:49 2026 +0100 Initial commit: project scaffold 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