fabro/docker/demo-server.toml
Bryan Helmkamp 314ee9be99 Add checkpoint exclude globs to skip bulky artifacts from git checkpoint commits
Introduces a [checkpoint] config table with exclude_globs in both run.toml
(per-run) and server.toml (defaults). Globs are merged (union + dedup) when
both are present. Non-empty excludes use git pathspec :(glob,exclude) syntax
to prevent staging matching files during checkpoint commits.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-07 12:25:27 -05:00

19 lines
341 B
TOML

[api]
base_url = "http://api:3000"
[feature_flags]
session_sandboxes = false
[checkpoint]
exclude_globs = [
"**/node_modules/**",
"**/.pnpm-store/**",
"**/.npm/**",
"**/.cache/**",
"**/playwright-report/**",
"**/test-results/**",
"**/.cargo-target*/**",
"**/.cargo_target*/**",
"**/.wasm-pack/**",
"**/.tmpbuild/**",
]