curl -OL https://github.com/gskynex/angular-boilerplate/archive/refs/tags/{TAG_VERSION}.zipnpm installnpm run startThe start command launches the Angular development server and opens the project in the browser.
npm run buildThe build command creates the production version of your project.
npm run build:watchThe build:watch command watches for changes in the source code and automatically rebuilds the project.
npm run lintThe lint command performs static analysis of TypeScript code and checks SCSS styles.
npm run lint:ts:fixThe lint:ts:fix command automatically fixes some errors and styles in TypeScript code.
npm run testThe test command runs tests using Jest.
npm run test:coverageThe test:coverage command runs tests with code coverage measurement.
npm run prepareThe prepare command installs Git Hooks using Husky.
docker build -t angular-boilerplate .docker run -d -p80:80 --name=angular-boilerplate angular-boilerplatehttp://localhost:80