### Getting Help on Angular CLI Commands Source: https://github.com/jairdiaz0/angular-payments-manager/blob/master/README.md Displays help information for Angular CLI commands. Provides details on command usage, options, and arguments. ```Shell ng help ``` -------------------------------- ### Building Angular Project for Production Source: https://github.com/jairdiaz0/angular-payments-manager/blob/master/README.md Compiles the Angular application into output files. The build artifacts are placed in the `dist/` directory, ready for deployment. ```Shell ng build ``` -------------------------------- ### Running Development Server with Angular CLI Source: https://github.com/jairdiaz0/angular-payments-manager/blob/master/README.md Starts a local development server for the Angular application. It serves the application at http://localhost:4200/ and automatically reloads on file changes. ```Shell ng serve ``` -------------------------------- ### Running End-to-End Tests Source: https://github.com/jairdiaz0/angular-payments-manager/blob/master/README.md Executes end-to-end tests for the application. Requires an installed end-to-end testing package. This tests the application from a user's perspective. ```Shell ng e2e ``` -------------------------------- ### Generating Angular Component with CLI Source: https://github.com/jairdiaz0/angular-payments-manager/blob/master/README.md Uses Angular CLI to generate a new component with the specified name. This command creates the necessary files (component, template, styles, spec). ```Shell ng generate component component-name ``` -------------------------------- ### Running Unit Tests with Karma Source: https://github.com/jairdiaz0/angular-payments-manager/blob/master/README.md Executes the project's unit tests using the Karma test runner. This command provides feedback on the application's code quality and functionality. ```Shell ng test ``` -------------------------------- ### Generating Various Angular Schematics with CLI Source: https://github.com/jairdiaz0/angular-payments-manager/blob/master/README.md Uses Angular CLI to generate various Angular artifacts like directives, pipes, services, classes, guards, interfaces, enums, or modules. Replace the pipe-separated list with the desired schematic type. ```Shell ng generate directive|pipe|service|class|guard|interface|enum|module ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.