From 8e12cb9bb66adc7adaf6d276133d6f235d294d23 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 15 Jul 2026 20:24:31 +0200 Subject: init --- .gitignore | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..229fdf0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# ========================================== +# 1. Python Environment & Bytecode +# ========================================== +__pycache__/ +*.py[cod] +*$py.class +.venv/ +venv/ +ENV/ +env/ +*.env + +# ========================================== +# 2. Local Configuration & Secrets (CRITICAL) +# ========================================== +.env +.env.local +.env.*.local +*.pem +*.key +*.cert + +# ========================================== +# 3. Testing & Coverage +# ========================================== +.pytest_cache/ +.coverage +htmlcov/ +.pytest_cache/ + +# ========================================== +# 4. Databases (Local SQL testing) +# ========================================== +*.db +*.sqlite3 +postgres-data/ # If you mount your Postgres volume locally + +# ========================================== +# 5. Build, Docker & OS files +# ========================================== +.DS_Store +Thumbs.db +build/ +dist/ +*.egg-info/ +.docker-volumes/ + +# ========================================== +# 6. IDE / Editor Configurations +# ========================================== +.vscode/ +.idea/ +*.suo +*.ntvs* +*.njsproj +*.sln +*.swp -- cgit v1.2.3