To get started with contributing, please follow these steps:
- Fork the repository and clone it to your local machine.
- Create a new branch for your changes:
git checkout -b feat/my-branch-name
orfix/my-branch-name
. - Make your desired changes or additions.
- Run the tests to ensure everything is working as expected.
- Commit your changes according to the specification :
git commit -m "<type>(<optional scope>): <description>"
For example:feat(api): send an email to the customer when a product is shipped
. - Push to the branch:
git push origin feat/my-branch-name
. - Submit a pull request to the
master
branch of the original repository.