## When developing
Run
```bash
mvn clean package
from repo root directory.
To run application local jar, run:
java -jar api/target/*.jar
Microservice finds database through ip
To test the service you should go to
http://localhost:8087/v1/auth/login
To list all authorizations (login info).
POST auth to:
http://localhost:8087/v1/auth/login
to log in.
POST auth to:
http://localhost:8087/v1/auth/logout
to log out.
docker build . -t tt-auth:X
[Optional] Define your own X
docker run -p 8087:8087 tt-auth:X