Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paradocx96/netgarage-api
NetGarage - REST API Application for Resource Management System.
https://github.com/paradocx96/netgarage-api
api java jdk8 mongodb rest-api spring-boot workflow
Last synced: 5 days ago
JSON representation
NetGarage - REST API Application for Resource Management System.
- Host: GitHub
- URL: https://github.com/paradocx96/netgarage-api
- Owner: paradocx96
- Created: 2021-07-27T05:38:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-26T20:17:57.000Z (over 2 years ago)
- Last Synced: 2024-10-31T02:05:16.141Z (about 2 months ago)
- Topics: api, java, jdk8, mongodb, rest-api, spring-boot, workflow
- Language: Java
- Homepage: https://netgarage-api.herokuapp.com
- Size: 7.2 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NetGarage (API)
## Software Project Management - SE3080## Group Members & Functions
| Student ID | Student Name | Github Username | Functions |
|------------|-------------------------|-----------------------|-------------------------|
| IT19014128 | A.M.W.W.R.L. Wataketiya | RavinduLa | Mobile Phone Management |
| IT19180526 | S.A.N.L.D. Chandrasiri | paradocx96 | Laptop Management |
| IT19240848 | H.G. Malwatta | DeclanChirush | User Management |## Deployment
| # | @ |
|-----------------|---------------------------------------|
| **Database** | _MongoDB_ |
| **Backend API** | _https://netgarage-api.herokuapp.com_ |## Git Guide
💻
**Git Clone**
git clone https://github.com/paradocx96/NetGarage-api.git
cd NetGarage-api**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