From feb307e0d94e2d4742f4ab003183e97d0c1b29f6 Mon Sep 17 00:00:00 2001 From: 5t4l1n Date: Sun, 27 Jul 2025 04:11:26 +0530 Subject: [PATCH] update & add --- .gitignore | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 0a4a495..44379df 100644 --- a/.gitignore +++ b/.gitignore @@ -1,27 +1,33 @@ -# Ignore virtual environment +# ▶️ Python virtual environments venv/ env/ -# Python cache and compiled files +# ▶️ Python bytecode and cache __pycache__/ *.py[cod] *.pyo -# Editor/IDE settings +# ▶️ Node.js dependencies and build output +node_modules/ +dist/ +build/ +.next/ +*.log + +# ▶️ Editor settings .vscode/ .idea/ -# Environment variables +# ▶️ Environment files .env *.env -# MacOS/Linux/Windows system files +# ▶️ Jupyter Notebooks +.ipynb_checkpoints/ + +# ▶️ OS-specific system files .DS_Store Thumbs.db -# Logs and database files -*.log +# ▶️ SQLite or other local databases *.sqlite3 - -# Jupyter Notebook checkpoints -.ipynb_checkpoints/