# Build-context hygiene. docker/ MUST stay (image configs).
.git
.gitignore
.gitattributes
.github

# Secrets & env (never bake into the image)
.env
.env.*
!.env.example
.env.gitea

# Deps / build output (reinstalled or rebuilt in the image)
vendor
node_modules
public/build
public/hot
bootstrap/cache/*.php

# Local runtime state
storage/logs/*
storage/framework/cache/data/*
storage/framework/sessions/*
storage/framework/views/*
database/*.sqlite

# Dev tooling / tests / docs (not needed at runtime)
tests
phpunit.xml
.phpunit.cache
.editorconfig
handoff.md
kickoff-prompt.md
rules.md
CLAUDE.md
README.md

# Compose files (not needed inside the image)
docker-compose.yml
docker-compose.prod.yml
