Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wiremock/wiremock-cloud-demo-app

MockLab demo Java app based on Spring Boot
https://github.com/wiremock/wiremock-cloud-demo-app

login mocklab oauth oauth2 openid-connect spring-boot

Last synced: about 3 hours ago
JSON representation

MockLab demo Java app based on Spring Boot

Awesome Lists containing this project

README

        

# WireMock Cloud Demo App

Simple to do list app built on Spring Boot used to demonstrate [WireMock Cloud](http://wiremock.io).

## Running

Provided you have Java installed and on the `PATH`, the app can be run from the commandline with a single command.

Windows:

```
gradlew bootRun
```

Linux or Mac OSX:

```
./gradlew bootRun
```

The app will start on port 7100 (which can be changed in `application.properties`). Once it is running, point your browser to [http://localhost:7100](http://localhost:7100).

## Executing the automated tests

Windows:

```
gradlew test
```

Linux or Mac OSX:

```
./gradlew test
```