From 9b49e927220755f5dc04e1600c5d61afa59e95a0 Mon Sep 17 00:00:00 2001 From: kcar Date: Wed, 27 May 2026 21:56:21 +0100 Subject: [PATCH] chore: add .gitignore for Python API project --- .gitignore | 60 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 55 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 92f33d4..fd668f0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,61 @@ -__pycache__ -.pytest_cache +# Python +__pycache__/ +*.py[cod] +*.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST +# Virtual environments +venv/ +env/ +ENV/ +.venv + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Environment files (never commit secrets) .env +.env.local +.env.*.local +# Logs +*.log +logs/ +queue_workers.log + +# Large files +*.csv +*.xlsx +*.sqlite +*.db + +# OS files .DS_Store +Thumbs.db -.archive/* +# Docker +docker-compose.override.yml -data/logs/* -*.bak +# Node +node_modules/