Skip to content
fullstackhero

Guide

Overview

Two React + Vite + TypeScript apps ship with the kit — an admin console for operators and a tenant dashboard for end users.

views 0 Last updated

Two React + Vite + TypeScript apps ship in clients/ — both production-grade, both wired against the API’s auth + multitenancy + realtime out of the box. Pick the right one for your audience: admin is for operators (back-office, support, ops); dashboard is for end users (the people who pay you).

The two apps

Quick facts

clients/adminclients/dashboard
AudienceOperators, support, opsEnd users (tenant members)
Default port51735174
PagesUsers, Roles, Tenants, Impersonation, Audits, Webhooks, Billing, Health, Notifications, SettingsCatalog, Chat, Files, Tickets, Identity (profile + sessions + 2FA), System, Settings
RealtimeSignalR notificationsSignalR (chat + notifications) + SSE feeds
AuthSame JWT bearer + refresh + 2FA flow as the APISame
ThemingStatic (admin chrome)Per-tenant theme from the Multitenancy module

Both run via npm run dev (Vite dev server with HMR) and build to static assets via npm run build. The kit’s Aspire AppHost orchestrates both alongside the API for one-command local dev.