https://github.com/SoumyadeepDatta/spring-e-commerce-web-app.git
git clone <url>
git checkout crud
Now you can start working on your local machine.
- Make sure you are inside the
crud
branch. - Pull request to
main
branch will be discarded. main
branch is for backup only.- Only creator can modify
main
branch.
- Use relevant commit message.
- Give brief description to your pull request.
crud
branch is for creating APIs only.- Don't change any configuration files.
- Mongodb with the latest version preferable.
- JAVA 8 (Some functions may not work properly with the later versions).
- Make sure you don't have a database named
appdb
containing important data. Otherwise it might get overwritten. - Install Postman Link
- Check git status
git status
- Add files to staging area
git add .
- Commit changes
git commit -m "add commit message here"
- Push your code to your remote repository (GitHub) from
crud
branch
git push -u origin crud
For help and documentation please refer to the HELP.md file.