https://github.com/bpstelios10/ratpack-template
https://github.com/bpstelios10/ratpack-template
cucumber guice ratpack
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bpstelios10/ratpack-template
- Owner: bpstelios10
- Created: 2019-03-03T22:43:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-11-23T13:26:36.000Z (over 4 years ago)
- Last Synced: 2025-03-03T20:55:03.833Z (over 1 year ago)
- Topics: cucumber, guice, ratpack
- Language: Java
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ratpack-template
## Start application locally
### Using Gradle tasks
Users can start the application locally, by using the gradle task:
```shell
./gradlew service-mocks:run
./gradlew service:run
```
check if server is up, by using the URL `localhost:5050/trolltrump/private/status`
### Using docker compose
Users can start the application locally, by using the docker-compose:
```shell
docker-compose up
```
check if server is up, by using the URL `localhost:5050/trolltrump/private/status`
and shut down the application, by using docker-compose again:
```shell
docker-compose down
```