# Exclude everything not explicitly copied in Dockerfile
# This reduces build context size from 5.3MB to ~500KB

# Large directories not needed
.git
app/
tests/
ci/
tmp/

# Python artifacts
__pycache__
*.pyc
.venv
.pytest_cache
.coverage

# IDE
.vscode
.idea

# Docs (except fbnconfig.md which is needed)
*.md
!fbnconfig.md
!readme.md
