it's been a long time working on a play app & now comes the time to deploye it. that my first time so i'm kind of lost. which hosting compagny is the best & offer good pricing ?

link|improve this question

feedback

10 Answers

up vote 13 down vote accepted

The creator company of Play Framework, Zenexity, propose a hosting solution dedicated to Play applications: PlayApps

It's probably the best choice since it is native Play hosting.


Otherwise, you can export your Play application as a classic war:

play war yourapp -o yourapp.war

Then, this war can be deployed on every Java server (Tomcat, Glassfish, etc.). For hosting a Java application server, you'll probably need a dedicated or virtualized server.


Another solution is to deploy your app on Google App Engine. But for that, you have to developp your Play application in a specific way. In particular, you can't use classic persistence. You have to use the Siena Play module to manage your entities for Google App Engine.

I don't know if Play apps can easily be deployed on other cloud structures. Maybe on Cloud Foundry since it supports Java application but I did not tested it and there are not deploy plugins yet for this platform.

link|improve this answer
feedback

I'll probably post a detailed instruction of what I did, but here's a quick 2-min general idea.

Buy an Amazon Micro Instance Virtual Server (costs around $11/mo) with a debian squeeze (6.0) image

$> sudo apt-get install sun-java6-jdk6
$> sudo apt-get install mysql5
~: wget <playDownloadURL>
~: unzip *.zip
~: set path to java, play

sftp/scp your source code to /var/www/<yourApp>
$> cd /var/www/<yourApp>
$> play start 
~: (not actual commands but the concept)

and you are in business.

link|improve this answer
Have you used this for a production environment? Come across any issues? – j.davies Feb 26 at 22:23
feedback

Cloudbees, http://cloudbees.com, is an excellent choice. There is even a Play Framework Module for it.

http://www.playframework.org/modules/cloudbees-0.1/home

link|improve this answer
feedback

You can look at this direction Heroku

link|improve this answer
Heroku and Play link up pretty well at the moment. – Petteri Hietavirta Feb 21 at 13:09
feedback

All of my Play! apps are hosted on Google App Engine, which is free for small sites. But you can host Play! apps on any Java web hosting provider.

link|improve this answer
feedback

In this question experiences on free and low-cost hosting for play framework applications?

there are several cloud options for play framework...

link|improve this answer
feedback

There are a number of cloud hosting solutions supported by Play. There is a module for Stax, and the message boards have mentioned success on several others. A quick search for 'deploy' on the google groups will show a number of options.

I would recommend PlayApps though, It is actually hosted on Ghandi (i think!) and the pricing plan is the same, so the Zenexity guys actually make no money from this. They have set it up to be a convenience to us developers.

GAE is an option, but it restricts what you can do with Play. The WAR file deployment option, allowing to deploy to any java servlet container is also an option, but adds the overhead and resource of the container unnecessarily, so again, not the best option.

link|improve this answer
1  
Stax has dissappeared and been absorbed by Cloudbees! – Zenklys Aug 10 '11 at 14:40
feedback

You could try Play! Manager. It's a Manager for Play Applications much like the Tomcat Manager. Worth trying:

https://github.com/mbarbieri/playmanager

link|improve this answer
feedback

Lately I've been playing around with openshift for hosting playframework application

It looks really good, you have mysql, phpmyadmin, mongodb, mongorock, jenkins, and what's even more important, you get 5 applications with 500MB op data space for each one... for free...

I'm also using this play module to ease deployment to openshift

https://github.com/opensas/openshift/blob/master/documentation/manual/home.textile

have a look at these articles:

playlatam.wordpress.com

detailed github tutorial

article found at openshift's site

link|improve this answer
feedback

I would look into cloud hosting.

If you developed your application in .NET, look into Windows Azure.

Otherwise, check out Amazon EC2.

Little confusing to setup if your a firs-timer, but they have guides and stuff to help you through it, and you get 100% scalability going with the cloud.

link|improve this answer
He said he developed the application with Java, and the Play! framework... where'd you get .NET? – Paperino May 31 '11 at 23:16
I was just bringing up the cloud and showing that there are two basic versions he can go with. Right now it makes more sense to stick with Amazon. Java has plenty of EC2 frameworks. – slandau Jun 1 '11 at 13:09
-1 for this answer. OP is asking for specific hosting options for Play, not general cloud hosting options. – RyanBrady Nov 17 '11 at 11:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.