The easiest way to start a new Angular project
Fork or clone this repository to start using it.
- Install npm packages:
npm install
- Run
ng serve
for a dev server - Navigate to http://localhost:4200/
- The app will automatically reload if you change any of the source files
This project uses angular folder structure that uses commitlint to check if the commits messages meet the Conventional Commits.
The commit message pattern:
type(scope?): subject #scope is optional
Types list:
- feat: Adds a new feature
- fix: Solves a bug
- chore: Other changes that don't modify src or test files
- docs: Adds or alters documentation
- style: Improves formatting, white-space
- refactor: Rewrites code without feature, performance or bug changes
- perf: Improves performance
- test: Adds or modifies tests
- build: Affects the build system or external dependencies
- ci: Changes CI configuration files and scripts
- revert: Reverts a previous commit
The code in this project is licensed under MIT license.