This is a schedule browser for the Devoxx conference. It's built in Scala with the Play framework and runs on Windows Azure.
The Windows Azure part of the code is based heavily on packanddeploy, a simple scaffolding for packaging a Windows Azure app from the command line.
- Edit
ServiceConfiguration.*.cscfg
to reference a valid storage account that includes a container calleddevoxx
withjava.zip
andplay.zip
in it. These should contain a JDK and the Play framework, respectively. They're downloaded at runtime and unzipped in Windows Azure. - Run
build.cmd & run.cmd
to build and run the application locally. This will useServiceCofiguration.Local.cscfg
, so make sure it's configured properly. Leave it with just one instance to avoid file contention between processes. - Run
pack.cmd
to outputPackAndRun.cspkg
. That file, along withServiceConfiguration.Cloud.cscfg
is what you need to deploy via the Windows Azure portal (or with some other tool) to get the app running in the cloud.