-
Notifications
You must be signed in to change notification settings - Fork 0
NewApplication
The easiest way to create a new application is to use the play new command.
$ play new myFirstAppThis will ask for some information.
- The application name (just for display, this name will be used later in several messages).
- The template to use for this application. You can choose either a default Scala application, a default Java application, or an empty application.

Note that choosing a template at this point does not imply that you can’t change language later. For example, you can create a new application using the default Java application template and start adding Scala code whenever you like.
Once the application has been created you can use the play command again to enter the Play 2.0 console.
$ cd myFirstApp
$ playYou can also create a new Play application without installing Play, by using sbt.
First install sbt 0.11.2 if needed.
Just create a new directory for your new application and configure your sbt build script with two additions.
In project/plugins.sbt, add:
// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"
// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.0")Be sure to replace 2.0 here by the exact version you want to use. If you want to use a snapshot version, you will have to specify this additional resolver:
// Typesafe snapshots
resolvers += "Typesafe Snapshots" at "http://repo.typesafe.com/typesafe/snapshots/"
In project/Build.scala:
import sbt._
import Keys._
import PlayProject._
object ApplicationBuild extends Build {
val appName = "My first application"
val appVersion = "1.0"
val appDependencies = Nil
val main = PlayProject(
appName, appVersion, appDependencies, mainLang = SCALA
)
}You can then launch the sbt console in this directory:
$ cd myFirstApp
$ sbtsbt will load your project and fetch the dependencies.
- Deploying your application
- Creating a standalone version of your application
- Additional configuration
- Deploying to Heroku
- Deploying to Cloud Foundry
- Deploying to dotCloud
- Set-up a front-end HTTP server
- Installing Play 2.0
- Creating a new application
- Anatomy of a Play 2.0 application
- Using the Play 2.0 console
- Setting-up your preferred IDE
- Sample applications