Skip to content
This repository has been archived by the owner on Nov 12, 2020. It is now read-only.

Latest commit

 

History

History
47 lines (35 loc) · 710 Bytes

README.md

File metadata and controls

47 lines (35 loc) · 710 Bytes

OSUApp

Build System : Gradle
Web FrameWork : Spring Boot

Json Format for Tutor Object:

db.tutor.insert (
   {
      "name" : "Vella",
      "department" : "cs",
      "email" : "[email protected]",
      "studentAs" : "true", 
      "tutorAs" : "true",
      "course_seeking" : [ "CS540 DBMS" ],
      "course_offering" : ["CS519 Algorithm", "CS 515 Algoritm"]
   }
)

Json Format for the Course Object:

db.course.insert(
   {
      "name" : "CS",
      "courseList" : ["CS515 Algorithms","CS517 Theory of Computation","CS519 Master Level Algorithms"]
   }
)

Run Development server

Backend


gradle  bootRun

Frontend


ng serve or npm start