A single, powerful, and easy-to-use web dashboard for managing OpenStack-based cloud infrastructure — giving operators and developers one UI for compute, storage, networking, identity, and more across projects and regions.
Aurora is a pnpm monorepo orchestrated with Turborepo. It contains one reference application and several packages:
aurora-dashboard/
├── apps/
│ └── dashboard/ # Reference consumer app (uses @cobaltcore-dev/aurora)
└── packages/
├── aurora/ # Published npm library — server + client
├── signal-openstack/ # OpenStack API client
├── policy-engine/ # OpenStack policy (oslo.policy) evaluator
└── config/ # Shared TypeScript and ESLint configuration
The core publishable library (@cobaltcore-dev/aurora) with two entry points:
@cobaltcore-dev/aurora/server—createServer(config)starts a Fastify BFF that proxies OpenStack API calls and exposes them via tRPC@cobaltcore-dev/aurora/client—<AuroraApp />is a self-contained React component that renders the full dashboard UI
See packages/aurora/README.md for the full consumer guide.
A minimal reference implementation showing how to consume @cobaltcore-dev/aurora. It owns nothing except:
- Reading environment variables and passing them to
createServer() - Persisting theme preference via
localStorage - A Vite config wired up for production builds
A typed OpenStack HTTP client built on undici. Handles authentication tokens, service catalog resolution, session management, and error normalization across OpenStack services.
An in-browser and server-side evaluator for OpenStack's oslo.policy rule format. Enables fine-grained, OpenStack-native authorization in the UI without additional API roundtrips.
Shared TypeScript compiler and ESLint configurations used across all packages.
pnpm installcp apps/dashboard/.env.example apps/dashboard/.envEdit .env and set at minimum:
IDENTITY_ENDPOINT="https://<your-keystone-host>/identity/v3/"
VITE_BFF_ENDPOINT="/polaris-bff"pnpm devThe dashboard starts at http://localhost:4005 by default.
pnpm buildpnpm previewpnpm testInstall the package and follow the guide in packages/aurora/README.md.
npm install @cobaltcore-dev/auroraThis project uses Semantic Release for automated versioning and changelog generation based on conventional commits.
See docs/semantic_release.md for full details.
Feature requests, bug reports, and contributions are welcome via GitHub issues. See CONTRIBUTING.md for contribution guidelines.
If you find a security bug, follow our security policy. Do not open GitHub issues for security problems.
By participating in this project, you agree to abide by the Code of Conduct.
Copyright 2026 SAP SE or an SAP affiliate company and aurora-dashboard contributors. Please see our LICENSE for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available via the REUSE tool.