Skip to content

Instantly share code, notes, and snippets.

@phucnh
Last active August 29, 2015 14:17
Show Gist options
  • Save phucnh/813ff9c27d4eda6c9d48 to your computer and use it in GitHub Desktop.
Save phucnh/813ff9c27d4eda6c9d48 to your computer and use it in GitHub Desktop.
create play application
import play.api.{ DefaultApplication, Mode, Play }
val applicationPath = new java.io.File(".")
val classLoader = this.getClass.getClassLoader
val sources = None
val applicationMode = Mode.Dev
Play.start(new DefaultApplication(applicationPath, classLoader, sources, applicationMode))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment