$ git clone git@github.com:techmonad/akka-http-slick.git
$ cd akka-http-slick
$ sbt clean compile test
$ sbt run
$ curl localhost:9000/api/employee/list
[{"name":"jaz","email":"jaz@bar.com","id":1,"companyName":"ABC solution","position":"Senior Consultant"}]
$ curl -XPOST -H 'Content-Type: application/json' localhost:9000/api/employee/create -d '{"name":"jay","email":"jay@bar.com","id":1,"companyName":"ABC solution","position":"Senior Consultant"}'
Employee created successfully[id: 6]