To run the application and its dependencies:
docker-compose up --buildTo run the integration tests:
docker-compose -f docker-compose-test.yaml up --abort-on-container-exitTo create a new user:
curl -X POST http://localhost:8080/save \
-H "Content-Type: application/json" \
-d '{
"id": "<uuid>",
"name": "John Doe",
"email": "johndoe@example.com",
"date_of_birth": "1990-01-01T00:00:00Z"
}'To get a user by id:
curl http://localhost:8080/<uuid>