An introduction to Angular project for the summer students at Dualog
The project runs in docker. Build and run using docker-compose:
Build and run
$ docker-compose up --build
Start or stop
$ docker-compose (start|stop)
Stop and remove
$ docker-compose down
- Need to create an environment variable with the connection string for the Dualog MongoDB server:
- Linux:
export TempusDBConnectionString="<Connection-String>"
- Windows:
setx TempusDBConnectionString "<Connection-String>"
- Linux:
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 |