Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bpstelios10/ratpack-template
https://github.com/bpstelios10/ratpack-template
cucumber guice ratpack
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bpstelios10/ratpack-template
- Owner: bpstelios10
- Created: 2019-03-03T22:43:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-11-23T13:26:36.000Z (about 3 years ago)
- Last Synced: 2024-11-10T10:19:43.348Z (2 months 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
```