Skip to content

Latest commit

 

History

History
 
 

akka

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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 .