mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Consolidate CLI and server machine defaults under settings.toml, including loader renames, writer preservation fixes, same-machine manifest handling, and docs/test updates for the new config model.
19 lines
336 B
TOML
19 lines
336 B
TOML
[api]
|
|
base_url = "http://api:3000"
|
|
|
|
[features]
|
|
session_sandboxes = false
|
|
|
|
[checkpoint]
|
|
exclude_globs = [
|
|
"**/node_modules/**",
|
|
"**/.pnpm-store/**",
|
|
"**/.npm/**",
|
|
"**/.cache/**",
|
|
"**/playwright-report/**",
|
|
"**/test-results/**",
|
|
"**/.cargo-target*/**",
|
|
"**/.cargo_target*/**",
|
|
"**/.wasm-pack/**",
|
|
"**/.tmpbuild/**",
|
|
]
|