如何使用Typesafe Activator UI在开发模式下运行播放项目

时间:2014-09-14 09:10:42

标签: playframework playframework-2.0 typesafe-activator

我正在使用Typesafe Activator 1.2.10。我用模板play-scala创建了一个带有激活器ui的新项目。

当我点击开始时,播放正在prod模式下运行。我想以开发模式运行它。如何用激活剂ui做到这一点?

取消单击“开始”后,请参阅以下日志。

console ouptput after click on run

PS:我知道如何在命令行中使用带有命令的激活器以dev模式运行此项目:activator run

编辑: 我的问题可能是这里报道的https://github.com/typesafehub/activator/issues/601

1 个答案:

答案 0 :(得分:0)

插件和播放scala种子存在问题:

只需将project / plugins.sbt更改为此

即可
// Comment to get more information during initialization
logLevel := Level.Warn

// The Typesafe repository
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/"

// Cloudbees
resolvers += "Sonatype OSS Snasphots" at "http://oss.sonatype.org/content/repositories/snapshots"

// Use the Play sbt plugin for Play projects
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.0-RC2")

addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.0.0-RC2")

addSbtPlugin("com.typesafe.sbt" % "sbt-coffeescript" % "1.0.0-RC3")

并重新编译项目。应用程序在开发模式下运行,刷新时自动重新编译正在运行!

https://github.com/typesafehub/activator/issues/601#issuecomment-72938901