Webservice Auth

Developed based in springboot_docker_base

Requirements

For building and running the application you need:

Running the application locally

There are several ways to run a Spring Boot application on your local machine. One way is to execute the main method in the com.miguelpazo.auth.Main class from your IDE.

gradle clean build

Deploying the application to Docker

The easiest way to deploy the sample application to OpenShift is to use the OpenShift CLI:

docker build -t webservice_auth .
docker run -dp 3031:3031 -t webservice_auth

After run docker commands you can access to endpoints:

curls -XGET http://localhost:3031

Copyright

Released under the Apache License 2.0. See the LICENSE file.