We have various applications developed using PHP and Java. We are using apache and tomcat. So when when we restart the system, the PHP apps are up once apache is up and the Java apps are up once tomcat is up. I am not sure what is the best way to handle this in Play framework (Let's say we have 10+ Play applications). Certainly starting each app individually is not the right solution. We can write some start up script that start each application after reboot. But I am curious to know how developers using other but similar frameworks like ROR and Django handle this scenario. Are there any tools for this? Any tools that can be used for Play applications?
|
|
|
Deploying WAR packages has some disadvantages, I can not discuss about performance but as you can see at the compatibility matrix of WAR plugin there are still some unsupported features. So WAR should be considered as the last option (if no other available) Currently I have the same set, PHP sites working via Apache + stand alone Play applications. Of course all of them need to be available on custom domain/subdomain on default web-port (80). In very general: we are deploying apps on dedicated IP, which is controlled in the frontend by You can find more details in the Set-up a front-end server doc. Now, using some simple bash scripts and git hooks you are able to prepare and deploy your application on the remote machine without need of resending whole package (which has size ~50mb for small app). Just similar to Heroku deployment, you should push to your server only the app's code, then using hook and script should prepare Of course starting application via Play's console is unnecessary waste of memory in the production env. There are samples on how to start Play apps on the server's start, so you'll probably find some tips according to your machine. As far as I know this is most optimal scenario for now |
|||
|
|
|
If you're hosting on Ubuntu you are probably best served plugging in an init script (this is a decent start) for each app, that way they'll start up with the machine. Alternatively https://github.com/dlecan/play2-war-plugin looks like it will let you send Play 2 apps to a WAR file you can deploy in Tomcat: core support for WAR deployment in the Play 2 series is not scheduled to show up till 2.1, so you may not be able to get that to work. Play 1 natively supports it: just go
|
|||
|