# Version control and tooling
.git/
.github/
.gitignore
.gitmodules

# Python / pixi build artefacts
.pixi/
.venv/
.venv-*/
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/

# Reflex build cache (regenerated in the builder stage)
.web/
.states/

# Runtime state / local persistence
state/
vault/
data/
logs/

# Tests (not needed in the runtime image)
tests/

# Infra-as-code (deployed separately, not baked into image)
infra/

# Secrets and env files
.env
.env.*
!.env.example

# Editor / IDE
.vscode/
.idea/
*.swp
*.swo
.DS_Store

# Frontend dep caches (defensive — should not exist at repo root)
node_modules/

# Docs (except the ones needed by Python build backends)
docs/
*.md
!README.md
!LICENSE

# Docker / compose local overrides
docker-compose.override.yml
