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

OSUApplication/OSUApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OSUApp

Build System : Gradle
Web FrameWork : Spring Boot

Json Format for Tutor Object:

db.tutor.insert (
   {
      "name" : "Vella",
      "department" : "cs",
      "email" : "vellaa@oregonstate.edu",
      "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