Reference
Settings and environment
Generated process configuration names, types, defaults, and validation boundaries.
Settings are read by the typed Settings model. Secret values are intentionally omitted;
use the environment's approved secret manager for production credentials.
Settings
| Environment name | Field | Type | Default behavior | Validation |
|---|---|---|---|---|
DATABASE_APP_URL | database_app_url | string | Local development connection (credentials omitted) | — |
DATABASE_ADMIN_URL | database_admin_url | string | Local development connection (credentials omitted) | — |
ARTIFACT_ROOT | artifact_root | string | .lumen-data/artifacts | — |
PUBLIC_API_ORIGIN | public_api_origin | string | "http://127.0.0.1:8000" | absolute HTTP(S) origin without a path, query, or fragment |
DEVELOPMENT_BEARER_TOKEN | development_bearer_token | string | Not displayed; supply through an approved secret store. | — |
CORS_ORIGINS | cors_origins | array of string | http://127.0.0.1:5173, http://localhost:5173 | minimum items 1; absolute HTTP(S) origin without a path, query, or fragment |
Unknown environment names are ignored by this model. Production startup and role-specific credential requirements are tightened as their owning deployable is introduced.