From 44d5608610a3eb22b8faa91b73cd8af3f078f805 Mon Sep 17 00:00:00 2001 From: "anurag.r" Date: Wed, 7 Jan 2026 14:24:21 +0530 Subject: [PATCH] added gitignore file --- .gitignore | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1f468e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,69 @@ +# Specify filepatterns you want git to ignore. + +# === Python === +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.so + +# === Django === +*.sqlite3 +db.sqlite3 +*.log +*.pot +*.pyc +local_settings.py + +# === Environment === +.env +.env.* +.venv/ +venv/ +env/ +ENV/ + +# === Django Migrations === +**/migrations/ +!*/migrations/__init__.py + +# === Static/Media (generated) === +staticfiles/ +static_root/ +media/ +media_root/ + +# === VSCode === +.vscode/ + +# === PyCharm === +.idea/ + +# === macOS === +.DS_Store + +# === Node (if Tailwind, Webpack, etc.) === +node_modules/ +build/ +dist/ +npm-debug.log +yarn-error.log +package-lock.json +.pnp.* +.pnp + +# === Coverage/Testing === +htmlcov/ +coverage.xml +*.cover +*.py,cover + +# === Others === +*.bak +*.swp +*.tmp + +*.sock + + +logs/