https://github.com/paradocx96/conference-application-spring-boot
AF Project Back-End
https://github.com/paradocx96/conference-application-spring-boot
java jwt mongodb mongodb-atlas spring-boot
Last synced: about 1 month ago
JSON representation
AF Project Back-End
- Host: GitHub
- URL: https://github.com/paradocx96/conference-application-spring-boot
- Owner: paradocx96
- Created: 2021-05-20T15:22:02.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-28T05:31:48.000Z (almost 5 years ago)
- Last Synced: 2025-02-10T20:59:45.887Z (over 1 year ago)
- Topics: java, jwt, mongodb, mongodb-atlas, spring-boot
- Language: Java
- Homepage: https://icaf-codewave-backend-api.herokuapp.com
- Size: 3.96 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ICAF - 2021
## Application Frameworks Project - Backend
## Group Members
| Student ID | Student Name | Github Username |
|------------|-------------------------|-----------------------|
| IT19014128 | A.M.W.W.R.L. Wataketiya | RavinduLa |
| IT19180526 | S.A.N.L.D. Chandrasiri | paradocx96 |
| IT19240848 | H.G. Malwatta | DeclanChirush |
| IT19238722 | I.H.A.H. Karunathilaka | AmarangiKarunathilaka |
## Deployment
**Heroku** : _https://icaf-codewave-backend-api.herokuapp.com_
## Git Guide
💻
**Git Clone**
git clone https://github.com/paradocx96/Conference-Application-Spring-Boot.git
cd Conference-Application-Spring-Boot
**Create a Branch and Commit from that Branch**
git checkout -b BranchName
git add .
git commit -m "Commit Message"
git branch -M BranchName
git push -u origin BranchName
**After Time**
git add .
git commit -m "Commit Message"
git branch -M BranchName
git push -u origin BranchName
**Check available Branches**
git branch
**Switch between Branches**
git checkout BranchName
**Create New Branch**
git checkout -b BranchName
**Update current Branch**
git pull
**Check commit history**
git log
**Check availability for commit**
git status
**Check Git Repository Details**
git remote show origin