mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 12:37:39 +00:00
Console Angular App
This is the ZITADEL Console Angular application.
Development
Installation
pnpm install
This automatically runs both generations in the correct order via Turbo dependencies.
Development Server
To start the development server:
nx run @zitadel/console:dev
This will:
- Fetch the environment configuration from the server
- Serve the app on the default port
Building
To build for production:
nx run @zitadel/console:build
This will:
- Generate proto files (via
prebuild
script) - Build the Angular app with production optimizations
Linting
To run linting and formatting checks:
nx run @zitadel/console:lint
To auto-fix formatting issues:
nx run @zitadel/console:lint:fix