Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/wiremock/wiremock-cloud-demo-app
- Owner: wiremock
- Created: 2017-09-11T17:49:27.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-22T20:18:44.000Z (12 months ago)
- Last Synced: 2024-04-16T04:10:16.134Z (7 months ago)
- Topics: login, mocklab, oauth, oauth2, openid-connect, spring-boot
- Language: Java
- Size: 5.36 MB
- Stars: 10
- Watchers: 5
- Forks: 8
- 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).
## RunningProvided 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
```