Skip to main content

Krado One

Krado One is a self-hosted internal developer platform built with React + Vite, Go + Gin, and SQLite or PostgreSQL.

It ships as a single deployable unit (one backend binary, one frontend build) that teams can run on a VM, in Docker, or on Kubernetes. There is no vendor lock-in and no external service dependency at minimum config.


Krado One portal home showing all portals with Beta badges

Portals at a glance

PortalWhat it doesEdition
Task ManagementKanban board, JIRA sync, Slack/email importFree+
DRM (Disaster & Maintenance)Incident lifecycle, RCA, maintenance windows, impact trackingFree+
DevX PortalService catalog, golden path, scorecards, DORA metricsFree+
Platform EngineeringTech radar, CI/CD pipelines, API catalog, change requests, promotionsFree+
Runbook PortalStep-based runbooks, MCP integrations, AI-powered executionPro+
Cloud & FinOpsAWS/GCP/Azure resource inventory, cost allocation, budget alertsPro+
Security & ComplianceCVE dashboard, secrets inventory, SOC2/ISO27001 controlsPro+
AI AssistantOpenAI-powered chatbot with session historyPro+

Free and Pro are self-hosted by you. Enterprise is a managed cloud instance hosted by us — same features as Pro, we handle operations.


Architecture

┌──────────────────────────────────────────────────────┐
│ Frontend (React + Vite) :5173 / :80 │
│ ─ Portal home → per-portal layouts │
│ ─ JWT auth context │
│ ─ Feature-flag driven nav │
└────────────────────┬─────────────────────────────────┘
│ HTTP / JSON
┌────────────────────▼─────────────────────────────────┐
│ Backend (Go + Gin) :8080 │
│ ─ JWT auth + RBAC middleware │
│ ─ Edition gating (Community / Pro / Enterprise) │
│ ─ AES-256-GCM encryption for secrets at rest │
│ ─ Scheduler: backup, maintenance, metrics, cloud │
│ ─ Env-var seeder (bootstrap without UI) │
└────────────────────┬─────────────────────────────────┘

┌──────────┴──────────┐
│ SQLite (default) │ or PostgreSQL
│ data/tasks.db │ DB_DRIVER=postgres
└─────────────────────┘

Quick navigation

I want to…Go to
Run it locally in 2 minutesQuick start
Deploy with DockerDocker deployment
Understand editionsEditions & quotas
Configure integrationsConfiguration reference
Set up SSOSSO
Manage users & rolesUsers, roles & permissions
Browse the HTTP APIAPI explorer