This is a Scala project for the blog article about Scala HTTP libraries. It provides a simple example on how to use https://www.playframework.com/documentation/3.0.x/Home library.
This will clean the compilation files (*.class) from the project:
sbt clean
The following command will compile the main project files:
sbt compile
This will execute all the tests in the project:
sbt test
As usual in a sbt application, the server can be started by typing:
sbt run