Postman documentation is used. https://www.getpostman.com/collections/4ca294ab3c9d975c42cf
- NodeJS express sever.
- MongoDB.
Follow the current naming convention and folder structure.
SERVICER_BACKEND
├── controllers // Add all controller for models here
├── models // Add all the mongoose models here
├── routes // Add all the routes and sub routes he
├── middleware // Add middlewares here for tasks
├── utils // Add all the services here
├── index.js // Entry file
├── nodemon.json
├── package.json // node module dependencies
└── readme.md // README file
- Create a feature branch if necessarry.
- Work on the issue and push to
main
or your feature branch. - Create a PR to
main
branch if you pushed to a feature branch.
Follow the follwing steps to begin development.
- Clone this repository.
- Run
npm install
. - Create a feature branch if necessary using
git branch branchname
and switch to branch usinggit switch branchname
. - Make the necessary changes and updates.
- Test locally using
npm run dev
command. - Push to remote repository.