Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play Framework application deployment

Tags:

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 ?

like image 842
Mooh Avatar asked Apr 29 '11 20:04

Mooh


People also ask

Which IDES can be used for play application?

A Java IDE is needed so developers can work for Android app development. We chose Eclipse, NetBeans, and IntelliJ IDE as the most popular ones.

Is Play Framework asynchronous?

Internally, Play Framework is asynchronous from the bottom up. Play handles every request in an asynchronous, non-blocking way. The default configuration is tuned for asynchronous controllers.


1 Answers

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.

like image 65
roshan Avatar answered Nov 28 '22 03:11

roshan