From 39953c7c5973d991c01bcdecd0f07abf56b62b09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sat, 5 Sep 2026 08:08:07 +0300 Subject: [PATCH] Add .gitignore (Python/Flask artifacts) --- .gitignore | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..05fd59c --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Virtual env +.venv/ +venv/ +env/ +ENV/ + +# Flask / WSGI +instance/ +.webassets-cache +.flaskenv +.flask_session/ + +# Byte-compiled / cache +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +.coverage +htmlcov/ + +# Editors / OS +.vscode/ +.idea/ +*.swp +.DS_Store +Thumbs.db + +# Logs / temp +*.log +/tmp/