Skip to content

ucsb-cs156-m23/team01-m23-10am-4

Repository files navigation

team01-m23-10am-4

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

|   Name    | GitHub Id    |  Service                    | Controller                |
|-----------|--------------|-----------------------------|---------------------------| 
| Yuanchen  | yuanchenmeng | `LocationQueryService`      | `LocationController`      |   
|    Qi     |     publicqi | `PublicHolidayQueryService` | `PublicHolidayController` |   
|   Iain    |      iain801 | `TidesQueryService`         | `TidesController`         |   
|  David    |      dscpsyl | `UniversityQueryService`    | `UniversityController`    |
|   Matt    |     MPriston | `ZipCodeQueryService`       | `ZipCodeController`       |

Repo: https://github.com/ucsb-cs156-m23/team01-m23-10am-4

On Dokku: https://team01.dokku-07.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