For the Devoxx conference here in Belgium, Steve Marx created a Scala app with the Play framework that runs on Windows Azure. Instead of using the Starter Kit for Java, this uses packageanddeploy (simple scaffold that packages an Azure app).
Read through his blog post 'Using Scala and the Play Framework in Windows Azure' or take a look at the project on github.
But there's one little issue, this also uses the cspack.exe for which I think there's no alternative on Mac. cspack is used to create a package you'll deploy to Windows Azure. Now I don't think this is a show stopper.
In his blog post, Steve talks about the WorkerRole\downloadstuff.ps1 file that downloads Java and the Play framework. You could extend it to also download your application (packed in a zip file). This way, your package will be very static (just a few scripts, which will download the acutal application), and you won't need to run cspack each time you want to deploy.
Now if you don't want to buy a Windows machine, you could do the following:
- Based on Steve's blog post, modify downloadstuff.ps1 to also download your app from blob storage.
- Upload your app to blob storage
- Create a Virtual Machine
- Connect using RDP to that VM and install the Azure SDK, tools, ...
- Create a package using cspack (look in the packageanddeploy project) to create a static package that contains all the scripts.
- Delete the VM, now that you have the package you'll no longer need it
- Deploy the package to a cloud service, this will run your scripts, trigger the download of your app and you'll have a running app.
- Each time you want to deploy, you'll simply upload the new version of your app to the storage account and you'll redeploy the static package, without having to use Windows