This project was generated using Angular CLI version 21.0.2.
All documentation has been consolidated in the Eagle Documentation Wiki:
- Architecture Overview - System components and request flow
- Configuration Management - ConfigService pattern and environment variables
- Deployment Pipeline - CI/CD workflows and procedures
- Local Development - Setting up your development environment
- Troubleshooting - Common issues and solutions
Environments:
Test and prod serve this app as a static bundle from an Azure Storage $web container behind
Azure Front Door. eao-nginx (rproxy) sits in front of Front Door, so /api and /admin/
stay same-origin. There are no containers and no Helm charts.
Deploys run from a release tag, never a branch. Cut the tag first, then deploy:
gh workflow run "Create Release Tag" -f version=v1.2.3
gh workflow run "Deploy eagle-public to Azure staging" -f version=v1.2.3
gh workflow run "Deploy eagle-public to Azure production (LIVE SITE)" -f version=v1.2.3Both deploy workflows reject a version that is not an existing vX.Y.Z tag. They rewrite
src/env.js for the target environment at build time, publish the bundle, purge the Front Door
edge and smoke test the result.
To roll back, re-run the deploy workflow for the previous good tag.
To start a local development server, run:
npm start
# or
ng serveOnce the server is running, open your browser and navigate to http://localhost:4200/. The application will automatically reload whenever you modify any of the source files.
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
ng generate component component-nameFor a complete list of available schematics (such as components, directives, or pipes), run:
ng generate --helpTo build the project run:
ng buildThis will compile your project and store the build artifacts in the dist/ directory. By default, the production build optimizes your application for performance and speed.
To execute unit tests with the Vitest test runner, use the following command:
ng testFor end-to-end (e2e) testing, run:
ng e2eAngular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
For more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.