An introduction to Angular project for the summer students at Dualog
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.
Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.
All Git Commit Messages should meet the following text format:
Subject line
(One newline)
Message Body
(One newline)
Ref <###>- Capitalize the Subject.
- Do not end the Subject line with a period.
- Message Body should end with at least one issue tracking reference.
- Use valid MarkDown in the message body.
- Use the present tense ("Add feature" not "Added feature").
- Use the imperative mood ("Move cursor to..." not "Moves cursor to...").
- Use the message body to explain what and why vs. how.
| Naming | When to use? |
|---|---|
feature/awesome-branch-name |
When developing a new feature |
bugfix/awesome-branch-name |
When fixing a bug |
hotfix/awesome-branch-name |
When fixing an urgent bug |
docs/awesome-branch-name |
When updating documentation |
tooling/awesome-branch-name |
When changing tooling |
performance/awesome-branch-name |
When improving performance |
refactoring/awesome-branch-name |
When refactoring code |
cosmetic/awesome-branch-name |
When improving UI/Cosmetic |
testing/awesomest-branch-name |
When adding tests |