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: 11 months ago
JSON representation
MockLab demo Java app based on Spring Boot
- Host: GitHub
- URL: https://github.com/wiremock/wiremock-cloud-demo-app
- Owner: wiremock
- Created: 2017-09-11T17:49:27.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-08-27T16:32:25.000Z (almost 2 years ago)
- Last Synced: 2025-04-14T17:55:44.098Z (about 1 year ago)
- Topics: login, mocklab, oauth, oauth2, openid-connect, spring-boot
- Language: Java
- Size: 5.4 MB
- Stars: 10
- Watchers: 5
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
```