Difference between revisions of "Heroku"

From air
Jump to navigation Jump to search
(Created page with "Platforme IaaS d'exécutions d'applications Ruby, Node.js, Clojure, Java, Python, et Scala. S'appuie du Git (push) et sur les containers Linux (LXC). Essai grat…")
 
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  +
Heroku (http://www.heroku.com/) is a PaaS cloud platform provider for services developed in [[Ruby]], [[Node.js]], [[Clojure]], Java, [[Play]], [[Python]], and [[Scala]] (https://devcenter.heroku.com/categories/language-support). Application are deployed using [[Git]] (push). Applications are isolated by Linux containers ([[LXC]]). Heroku provides addons (https://addons.heroku.com/) for [[NoSQL]] databases systems, analytics, messaging, caching ....
Platforme IaaS d'exécutions d'applications Ruby, [[Node.js]], Clojure, Java, [[Python]], et Scala.
 
   
  +
==Exemple de déploiement==
S'appuie du [[Git]] (push) et sur les containers Linux ([[LXC]]).
 
  +
<pre>
 
  +
cd nodered-mqttoutput
Essai gratuit (nombre d'heures ???)
 
  +
heroku create
 
http://www.heroku.com/
+
git push heroku master
  +
heroku addons:add openredis
  +
heroku open
  +
</pre>

Latest revision as of 04:19, 29 March 2014

Heroku (http://www.heroku.com/) is a PaaS cloud platform provider for services developed in Ruby, Node.js, Clojure, Java, Play, Python, and Scala (https://devcenter.heroku.com/categories/language-support). Application are deployed using Git (push). Applications are isolated by Linux containers (LXC). Heroku provides addons (https://addons.heroku.com/) for NoSQL databases systems, analytics, messaging, caching ....

Exemple de déploiement

cd nodered-mqttoutput
heroku create
git push heroku master
heroku addons:add openredis
heroku open