- Any modern docker installed
docker-compose up -d
curl --request POST localhost:8080/api/v1/users --header 'Content-Type:application/json' --data-raw '{"username":"proficientuser","password":"supersafepass","email":"[email protected]","name":"jonas","surname":"jonatis"}'
GET localhost:8080/api/v1/users returns all users
GET localhost:8080/api/v1/users/{userId} returns user specific information
PUT localhost:8080/api/v1/users/{userId} for updating fields
DELETE localhost:8080/api/v1/users/{userId} for deleting record