f23-6pm-4-team01

Lab instructions: https://ucsb-cs156.github.io/f23/lab/team01.html

|   Name           | GitHub Id    |  Service                    | Controller                |
|------------------|--------------|-----------------------------|---------------------------| 
| Daryl Ou         |darylou       | `LocationQueryService`      | `LocationController`      |   
| Shuyi Wan        |shuyiwan      | `PublicHolidayQueryService` | `PublicHolidayController` |   
| Ally Chu         |allychu       | `TidesQueryService`         | `TidesController`         |   
| Chelsea Stoner   |chelseastoner | `UniversityQueryService`    | `UniversityController`    |
| Sumit Gupta      |sumitgupta314 | `ZipCodeQueryService`       | `ZipCodeController`       |
| David Wang       |dayvidwang    | `JokeQueryService`          | `JokeController`          |

Repo: https://github.com/ucsb-cs156-f23/team01-f23-6pm-4

On Heroku: http://team01.dokku-08.cs.ucsb.edu

About this repo

This is a minimal backend only webapp built with Spring Boot.

The app provides some sample code for an API, and a Swagger user interface to test that API. The API is essentially a proxy for another API.

This code is the basis for a programming exercise where each student on a team of up to 5 students can build a proxy similar to the one in the example code.

What can you do with this code?

Command What it does
mvn compile Should result in a clean compile
mvn test Runs JUnit tests on the code base
mvn test jacoco:report Runs JUnit tests, and if all tests pass, computes code coverage. The code coverage report (Jacoco) can be found in target/site/jacoco/index.html
mvn package Builds the jar file target/team01-spring-boot-1.0.0.jar
mvn spring-boot:run Runs the code to startup a web server. Access it via http://localhost:8080 on the same machine where the server is running. Use CTRL/C to stop it.
java -jar target/team01-spring-backend-1.0.0.jar If done after mvn package, this is another way to start up the web server.
mvn test pitest:mutationCoverage Run pitest mutation coverage. View target/pit-reports/index.html for results (may take a few minutes)

Deploying on Dokku

For advice on deploying on Dokku, see: /docs/dokku.md