yoi/resources/workspace-backend.default.toml

52 lines
1.8 KiB
TOML

# Workspace Backend local config template.
#
# `yoi workspace init` copies this packaged template to
# `.yoi/workspace-backend.local.toml` without overwriting an existing file.
# The `.local` file is intentionally git-ignored.
#
# Print the latest packaged template with:
# yoi workspace config default
#
# Compare the local config with the latest packaged template with:
# yoi workspace config diff
#
# Omit a key to use the built-in fallback. TOML has no `null`, so optional
# settings are represented by leaving the key commented out.
[server]
# Backend HTTP/WebSocket listen address.
listen = "127.0.0.1:8787"
# Browser-facing frontend URL used by local tooling/display.
frontend_url = "http://127.0.0.1:5173"
# Static SPA build directory override. Leave commented for dev/API-only mode.
# Relative paths are resolved from the workspace root.
# static_assets_dir = "web/workspace/dist"
[data]
# Backend data root override. Leave commented to use the user-data fallback:
# <data_dir>/workspace-server/<workspace_id>/
# Relative paths are resolved from the workspace root.
# root = ".yoi/workspace-backend.data"
# Explicit control-plane SQLite DB path override.
# If omitted, this falls back to `<data.root>/workspace.db`.
# workspace_database_path = ".yoi/workspace-backend.data/workspace.db"
# Explicit embedded Runtime fs-store root override.
# If omitted, this falls back to `<data.root>/embedded-runtime`.
# embedded_runtime_store_root = ".yoi/workspace-backend.data/embedded-runtime"
[limits]
max_records = 200
# Remote Runtime sources. Token values must not be written here.
# Use token_ref only after secret-ref resolution is implemented for this config.
#
# [[runtimes.remote]]
# id = "example"
# endpoint = "http://127.0.0.1:8790"
# display_name = "Example Runtime"
# token_ref = "local:example-runtime-token"