Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bpstelios10/ratpack-template


https://github.com/bpstelios10/ratpack-template

cucumber guice ratpack

Last synced: 3 days ago
JSON representation

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
```