feature/ignore-self-toggle #1

Merged
lukas.pupkalipinski merged 97 commits from feature/ignore-self-toggle into main 2026-03-14 21:19:28 +01:00
Showing only changes of commit dfc386216b - Show all commits

49
backend/.gitignore vendored Normal file
View File

@@ -0,0 +1,49 @@
# ─────────────────────────────────────────────
# backend/.gitignore (Python / FastAPI)
# ─────────────────────────────────────────────
# Byte-compiled / optimised source files
__pycache__/
*.py[cod]
*.pyo
*.pyd
# Virtual environment (local override)
.venv/
venv/
env/
# Distribution / packaging
dist/
build/
*.egg-info/
# Testing
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.tox/
# Type checkers & linters
.mypy_cache/
.ruff_cache/
.pytype/
# Local database files
*.sqlite3
*.db
*.db-shm
*.db-wal
# Alembic generated junk
alembic/versions/__pycache__/
# Secrets
.env
.env.*
!.env.example
secrets.json
# Logs
*.log