From 648cf4be427e1995e1b6e72e4c45f572a482211e Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Mon, 1 Dec 2025 06:33:13 +0200 Subject: [PATCH] Add .gitignore --- backend/.gitignore | 69 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 backend/.gitignore diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 0000000..03545a3 --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1,69 @@ +# ------------------------- +# Python +# ------------------------- +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.pdb +*.so +*.egg-info/ +.eggs/ +dist/ +build/ +pip-wheel-metadata/ + +# Virtual environments +.env +.venv +venv/ +ENV/ + +# Local environment variables +*.env +!.env.example + +# Byte-compiled / cache +.pytest_cache/ +.cache/ + +# IDE / Editor settings +.vscode/ +.idea/ +*.swp + +# Logs +*.log +logs/ + +# Coverage / Testing +htmlcov/ +.coverage +coverage.xml +*.cover +.pytest_cache/ + +# MyPy / Ruff / Pyright +.mypy_cache/ +ruff_cache/ +.pyright/ + +# ------------------------- +# FastAPI specific +# ------------------------- +# Compiled static files (if any) +staticfiles/ + +# ------------------------- +# Docker +# ------------------------- +# Ignore local Docker environment +.docker/ +*.tar +docker-compose.override.yml + +# ------------------------- +# OS files +# ------------------------- +.DS_Store +Thumbs.db