- Install and configure mongoDB
- sudo service mongod start|stop|restart or simply mongod
- clone the repo
- npm install && npm start
- pull a particular branch
git pull origin
- Create a new branch named "feature_x" and switch to it using
git checkout -b feature_x
- push the branch to your remote repository
git push origin
- switch back to master
git checkout master
- and delete the branch again
git branch -d feature_x
Remove the old origin and readd the correct one:
git remote remove origin git remote add origin
Update the existing remote links:
git remote set-url origin
- Staff
- Student
- Lesson
- api/staff
-
List Staff
- get /api/staff
-
Add Student
- post /api/students
-
Delete Lesson
- delete /api/lesson/{lessonId}
-
Update Marksheet
- put /api/marksheet/{marksheetId}
=========================
-
** From Questionnaire, you can create Assessment (CBT) **
-
** From Assessment (CBT), you can process it into Marksheet **
-
** From Marksheet, you can create Result (CBT) **