Has anybody tried to setup SBT to work with Google App Engine? I dream about using development server auto-reloading after source changes.
|
For a quick demo you can clone or download what I have done here. A minimalistic sbt-appengine-plugin example from scratchClone the sbt-appengine-plugin from GitHub
Publish the plugin locally so that you can use it in your own projects
Create a directory for a new project
Configure the new project
Tell sbt about the plugin you want to use
project.scala
plugins.scala
Add a very simple servlet
HelloWorld.scala
Add some more configuration files
web.xml
appengine-web.xml
And finally run sbt and start the project
Point your browser to http://localhost:8080/ and you should see Hello, world
To watch for changes in source files I have experimented a little with ~prepare-webapp after starting the server, but I haven't gotten it working properly. |
|||||||
|
|
Here is an sbt-appengine-plugin on Github that I'm trying to get to work right now. I will post any progress. |
|||
|
|
|
You will find an example by the author of the plugin here: http://gist.github.com/377611 Especially in the plugins configuration, the setting of 1.1-SNAPSHOT (mentioned above) or 2.1-SNAPSHOT (mentioned in the sbt-apppengine-plugin README) did not work. The example shows:
And this worked for me. |
|||
|
|
|
Here's a template project using sbt + appengine which can be used to get started: https://github.com/mtkopone/sbt-scalatra-appengine-template Also, instead of having to publish the sbt-appengine-plugin locally, you can use the following in Plugins.scala:
|
|||
|
|
|
I wrote an example application describing how to set up a development environment and create an application using SBT and app engine. It also includes instructions on setting up JRebel to get the auto reloading you dream of. See http://jeremys-scala-example.appspot.com/ It is for SBT 0.7 so its a little out of date. |
|||
|
|