#compile
- sbt compile
#This runs web server 2) sbt run
#use curl commands below
curl -X POST "http://localhost:8080/doctors?firstName=SomeName&lastName=LastName"
curl -X GET http://localhost:8080/doctors
(I would have made this json instead of queries, if time permitted) curl -X POST "http://localhost:8080/doctor/appointment?doctorId=0&startTime=1537650000000&duration=5&firstName=dds&lastName=433&pType=NewPatient"
curl -X GET "http://localhost:8080/doctor/appointment?doctorId=0&day=1537650000000"
curl -X DELETE "http://localhost:8080/doctor/appointment?doctorId=0&appointmentId=0"