Dev Branch
- Clone the project with
git clone https://github.com/CoffeeShopTeam/CoffeeShop.git. - Install project's dependencies:
npm i
- Update the project:
git pull origin main - Create new branch and move to it:
git checkout -b branch-name - Add your changes to staging area:
git add . - Commit the changes you made:
git commit -m "meaningful message" - Publish the changes:
git push -u origin branch-name - Create a Pull Request on github.
- Wait to approval / fix the Code Review comments.
- Merge your branch to main with github.
npm start
.
├── app.js
├── package.json
|
└── src
├── controllers
│ ├── userController.js
│ └── ...
├── models
│ ├── user.js
│ └── ...
├── routes
│ ├── index.js
│ ├── userRoutes.js
│ └── ...
└── views
├
```