mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +00:00
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>
19 lines
341 B
TOML
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/**",
|
|
]
|