Skip to content

Feature catalog

What's actually built, as of this page's own last update, so new work checks here before re-discovering or rebuilding something that already exists. This is a snapshot, not a live-generated index: re-verify against the real route/API surface before relying on it for anything more than orientation, the same caveat docs/roadmap.md states for itself.

Unlike docs/roadmap.md (a narrative status page), this is a flat reference: every dashboard page, every API resource group, every CLI command group, in one place. When in doubt about whether something has a UI, an API, or a CLI surface, check the corresponding row here first.

Dashboard pages (web/src/routes/)

Every route is a thin wrapper (loader + a real component from web/src/components/); a short route file is not itself a sign of a stub, the substance lives in the imported component.

Apps (/apps/$name/*)

PageComponent
OverviewHero, conditions, DiagnosisPanel
DeploysHistory, live/replay log stream, deploys/compare
Deploy settingsStrategy config, HooksEditor (pre/post-deploy commands + last run outcome)
DomainsDomainEditor
EnvironmentEnv var editor
ExecExecPanel (one-off container exec)
Feature flagsFeatureFlagsPanel
HealthHealth-check editor
IntegrationsLogDrainCard
LogsLogSearchPanel
MetricsMetricsDashboard
NetworkAppNetworkPanel
ResourcesResourceLimitsEditor + recommendation
Scheduled tasksScheduledTasksPanel
ServicesMulti-service group view
SourceGitRepoSourcePicker, PreviewEnvironmentsCard, WebhookDeliveriesPanel
VolumesAppVolumeBackupsSection
AlertsAlertRulesPanel, DeployNotifyTargetsPanel

Databases (/databases/$name/*)

PageFeatures
OverviewBackups, public access, attachment, TLS status badge
LogsDatabase activity logs
MetricsPerformance and resource metrics
ResourcesResource limits and recommendations

System / org structure

  • Nodes - list view, detailed health, cordon/drain, workload management, metrics
  • Cross-app domains - shared domain configuration
  • Projects - grouping and organization
  • Environments - environment-scoped settings
  • Organizations - multi-tenant structure

Settings (/settings/*)

  • Account
  • Security (2FA, TOTP)
  • General (system status, Docker cleanup, certificates, master key rotation)
  • Tokens
  • CLI access
  • Users
  • IAM policies
  • Audit log and purge
  • Backup targets
  • Registry credentials
  • Container registry (built-in)
  • Notification channels
  • Organizations
  • OAuth sign-in
  • GitHub/GitLab/Bitbucket apps
  • Cloudflare Tunnel
  • Vault (external secrets)
  • Email
  • System status (doctor bundle)
  • Containers
  • Updates

API resource groups (internal/api/routes.go, routes_platform.go)

296 registered routes total (see api-reference.md for the exact method/path/ability of every one), grouped by resource:

ResourceRoutesRepresentative paths
System (status/doctor/containers/prune/master-key/firewall/onboarding/updates)12GET /system/status, POST /system/prune, POST /system/master-key/rotate
Auth/2FA/users/roles/IAM/device-auth/OAuth33/auth/login, /auth/2fa/*, /iam/policies*, /auth/device/*
Apps CRUD/lifecycle/deploy31/apps, /apps/{name}/deploys, /restart, /exec, /deploy-spec, /hook-runs
Secrets / git-source / webhooks / previews12/apps/{name}/secrets*, /webhooks/github/{name}, /previews*
Telemetry (metrics/logs)10/apps/{name}/metrics, /logs/stream, /logs/download
Alerts / scheduled tasks / feature flags / notify channels22/apps/{name}/alerts, /flags/evaluate/{key}, /notification-channels*
Databases CRUD + engines + resources10/database-engines, /databases/{name}/resource-recommendation
Projects / orgs / environments (+ shared env layers)20/projects*, /organizations/{id}/env
Nodes11/nodes, /{id}/cordon, /drain, /workloads
Ingress / certs / domains / email / Cloudflare19/certificates, /settings/ingress*, /settings/cloudflare-tunnel*, /domains/{domain}/tls-cert
Static sites / backup targets / registry credentials15/static-sites, /backup-targets*, /registry-credentials*
Built-in container registry5/settings/registry, /registry/repositories, /registry/tags
Git provider apps (GitHub/GitLab/Bitbucket)27/github-app*, /gitlab-app*, /bitbucket-app*
DB backups/restore/clone-restore17/databases/{name}/backups*, /restore-as-new, /backup-schedule, /backups
App volume backups/restore11/apps/{name}/volumes/{volume}/backups*
App storage/database attach5/apps/{name}/storage, /apps/{name}/database
Audit log / log-drain5/audit-log, /audit-log/purge

CLI command groups (cmd/levelrail-cli/)

All command groups available:

apps, databases, auth, profile, tokens, domains, backups, app-volume-backups, cloudflare-tunnel, channels, backup-targets, registry-credentials, registry, flags, nodes, status, version, audit-log, audit-purge, doctor, containers, firewall, users, iam, secrets, migrate, completion, settings, github-app, gitlab-app, bitbucket-app, templates, static-sites.

Key command groups

apps

create, list, get, deploy, deploy-compose, deploy-spec, group, hook-runs, rollback, deploys, promote, restart, stop, start, delete, status, diagnose, resource-recommendation, network, logs (with --follow/-f for live tail), metrics, exec, log-drain, scheduled-tasks, alerts, organizations, projects, environments, previews, secrets, git-source, webhook-deliveries, storage.

databases

create, list, get, delete, resource-recommendation, metrics.

nodes

list, get, delete, join-token, cordon, uncordon, drain, workloads, health, patch-status, metrics.

iam

policies with subcommands: create, list, get, update, delete, attach, detach.

backups / app-volume-backups

list, list-all (backups only; instance-wide across every database and app volume), trigger, restore, restore-as-new, schedule, verify, verifications.

migrate

Support for migrating from coolify, dokploy, or caprover.

domains

list, cloudflare-dns, route53-dns, basic-auth, maintenance, tls-cert, certificates, error-pages.

settings

Headless first-run setup with no browser needed:

  • oauth (list/set) - instance-wide OAuth sign-in
  • email (get/set) - outbound email configuration
  • ingress (get/set) - ingress and ACME configuration

github-app / gitlab-app / bitbucket-app

repos (or projects for gitlab-app), branches, use-as-source. Connecting the App/OAuth integration itself stays dashboard-only (browser redirect through the provider's OAuth flow). These subcommands let you browse and use an already-connected integration's repos from the CLI.

templates

list, get, deploy (deploys a catalog entry's compose.yaml as an app, the same call apps deploy-compose makes).

static-sites

list.

Known gaps (backend done, UI thin or missing)

Verified by grepping web/src for a matching component/query; a real API/CLI capability with no dashboard surface counts as a gap here, not a documentation issue, unless docs/roadmap.md explicitly claims otherwise for that feature.

CapabilityAPI / CLIStatus
Master key rotation triggerPOST /system/master-key/rotate, secrets rotate-master-keyClosed: RotateMasterKeyDialog on Settings > General
Container visibilityGET /system/containers, containersClosed: Settings > Containers
Firewall sync triggerPOST /system/firewall/sync, firewall syncIn progress on a separate branch

When closing a gap here, move its row into the relevant section above instead of leaving it listed as both done and gapped.

Released under the Apache 2.0 License.