# Keep the build context lean. Anything not strictly needed for `pnpm
# install` + `pnpm build` shouldn't be sent to the daemon — speeds up
# every COPY and avoids accidentally baking your local state into the
# image.

# Per-machine state
data
logs
*.log

# Build artifacts (we rebuild inside the image)
dist
**/dist
node_modules
**/node_modules
ui/.vite
electron/dist

# Editor / IDE
.vscode
.idea
.DS_Store

# VCS + CI
.git
.github

# Test scratch / browser fixtures
.playwright-mcp
coverage
.nyc_output

# Docker artifacts themselves (don't ship the recipe into the recipe)
Dockerfile
docker-compose.yml
.dockerignore
