Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 397 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 397 Bytes

Scala Akka Sample Application

Building

pack build applications/akka

Running

docker run --rm --tty --publish 8080:8080 applications/akka

Viewing

curl \
  -X POST \
  -d '{"name": "MrX", "age": 31, "countryOfResidence": "Canada"}' \
  -H "Content-type: application/json" \
  http://localhost:8080/users
curl -s http://localhost:8080/users | jq .