diff --git a/akka-docs/modules/http.rst b/akka-docs/modules/http.rst index b0f54948d3..9a5f1f3a47 100644 --- a/akka-docs/modules/http.rst +++ b/akka-docs/modules/http.rst @@ -12,11 +12,19 @@ service applications that integrates with Akka. It provides a REST API on top of Getting started --------------- -First you must make your application aware of play-mini. -In SBT you just have to add the following to your ``libraryDependencies``:: +Easiest way to get started with `Play2 Mini `_ is to use the +G8 project templates, as described in the `Play2 Mini Documentation `_. + +If you already have an Akka project and want to add Play2 Mini, you must first add the following to +your ``libraryDependencies``:: libraryDependencies += "com.typesafe" %% "play-mini" % "" +In case you need to start Play2 Mini programatically you can use:: + + play.core.server.NettyServer.main(Array()) + + Akka Mist =========