This is a simple project for the DevOps integration workshop. It contains a web api which can receive an image and scan its exif information.
GET http://localhost:8080/ping
# Response:
{
"OK": true
}
POST http://localhost:8080/scan
<IMAGE DATA>
# Response:
{
"fieldA": "value",
"fieldB": "value",
...
}
You can find a postman collection in the root of this repository