ObjectOS
Configure

System Settings

Configure tenant and user settings through manifests and a shared K/V store.

System Settings

ObjectStack includes a settings service for runtime and plugin settings. ObjectOS exposes those settings through the Console when the application artifact requires the settings capability.

Settings model

Settings are declared by code and stored as values:

LayerPurpose
Settings ManifestDefines fields, labels, defaults, validation, visibility, and actions
sys_settingStores tenant/user K/V values
ResolverReads the effective value
Console UIRenders standard settings pages

Plugins should not create one-off settings tables for ordinary configuration. They should declare settings manifests and let ObjectOS render and store values consistently.

Resolution order

Effective values resolve in this order:

Environment override
Tenant setting
User setting
Manifest default

Environment overrides are locked. If a value is set through an environment variable, the Console UI should show it as managed by the host and reject runtime edits.

Common settings areas

Customer-facing settings usually include:

AreaExamples
EmailSMTP host, provider API key, from address, test email
BrandingProduct name, logo URL, accent color, default theme
Feature flagsTenant-level feature switches
StorageLocal filesystem or object storage credentials
AI providersModel provider, API key, budget limits
SSOOIDC provider settings and test connection

Secrets

Password and credential fields should be encrypted by the settings service or provided as environment-managed values. Do not store secrets in artifacts, compose files, or Git.

Test actions

Settings manifests can declare standard action buttons, such as:

  • send test email;
  • test SSO discovery;
  • verify object storage credentials;
  • validate webhook target.

Use these actions for customer setup flows instead of asking operators to inspect logs first.

On this page