This is a simple backend service written in GoLang. It provides an HTTP Rest API. The API specification can be found here: api/openapi.yaml.
This folder contains a Dockerfile. This can be used to build the application and bake it into an image.
Here is an example command to run the backend on Docker:
docker container run --name backend -p 8080:8080-d backend:v1.0.0
curl localhost:8080/api/version
This command should return a response like this:
{ "version": "1.0.0" }