From c3937412e7d7e593c75edfb06c52ae2b51871a02 Mon Sep 17 00:00:00 2001 From: Patsy Date: Wed, 22 Jul 2026 21:47:42 +0200 Subject: [PATCH] gitignore added --- .gitignore | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..60f633f --- /dev/null +++ b/.gitignore @@ -0,0 +1,64 @@ +# Python +__pycache__/ +*.py[cod] +*$pyclass$ +*.so +*.egg-info/ +dist/ +build/ +*.egg + +# Virtual Environment +venv/ +ENV/ +env/ +.venv + +# Flask +flask.db +instance/ + +# Database +*.db +*.sqlite3 +*.sqlite + +# Alembic migrations +migrations/versions/*.py_bak +migrations/versions/# + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +Thumbs.db +*.log + +# Environment variables +.env +.env.local +config_local.py + +# Logs +*.log + +# Coverage +htmlcov/ +.coverage +.coverage.* +.pytest_cache/ +.tox/ + +# Jupyter Notebook +.ipynb_checkpoints + +# macOS +.DS_Store + +# Windows +desktop.ini \ No newline at end of file