A management and notification tool for Devops engineers.
Make sure you have nodejs installed by running the following command:
node -vIf you do not have node installed, install nodejs from here
If your node version is less than v14, you would need to update it.
- Clone the central repository
- Checkout to the dev branch
- Change directory to the backend folder
- Install necessary packages using
- Update the environment variable credentials
npm install- Run server using
npm run dev.
- Clone the dev branch with
git clone repo-link-here - checkout from dev branch to your new branch named this way
git checkout -b feat/BE-15-process-script. In this example, BE-15 is the ticket number, process script is what it does. - Add your changes to the new branch
git add . - Commit changes
git commit -m "feat(BE-15): added endpoints to process login scripts". If it is abugfix, replace feat with fix. If it is some basic chore like removing redundant code, replace withchore - Now push your branch
git push origin feat/BE-15-process-script - Go to github and make a PR to the dev branch. Add description stating what the PR achieves. Add your linear link to the PR description also.
- Request for review from your team leads or mentors in the PR.
- Now wait for it to be merged by the team leads or mentors
Remember to always rebase the work from dev branch
git pull -r origin dev
If your work is merged and you are to handle another ticket, pull from dev again and checkout using the above steps