From 8888ef36870d7dd2e013e5631040283879f6c2b5 Mon Sep 17 00:00:00 2001 From: Faheed Date: Thu, 2 Oct 2025 14:58:09 +0300 Subject: [PATCH] new --- .gitignore | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..30d64dd --- /dev/null +++ b/.gitignore @@ -0,0 +1,61 @@ +# Python +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.pyc + +# Django +*.log +*.pot +*.pyc +*.sqlite3 +db.sqlite3 +media/ +staticfiles/ +local_settings.py + +# Virtualenv +env/ +venv/ +ENV/ +.venv/ +.env/ + +# VS Code +.vscode/ + +# macOS +.DS_Store + +# PyCharm +.idea/ + +# Coverage reports +htmlcov/ +.coverage +.tox/ +.nox/ +.cache/ +.coverage.* + +# Migrations (optional, if you want to ignore them) +# **/migrations/ + +# Node modules (if using npm/yarn) +node_modules/ + +# dotenv +*.env +.env.* + +# pip-tools +*.txt~ +requirements*.txt~ + +# mypy +.mypy_cache/ +.dmypy.json + +# pytest +.pytest_cache/ \ No newline at end of file