Application Rack basique

Pour créer une application Rack basique, vous avez simplement besoin d'un fichier nommé `config.ru`.

# config.ru

run lambda { |env|
  status = 200
  header = {'Content-Type'=>'text/plain'}
  body = StringIO.new("Hello Rack World!")
  return [status, header, body]
}

Vous pouvez ensuite ajouter le fichier à votre arbre git et le déployer sur votre instance en suivant ces instructions : http://wiki.gandi.net/fr/simple/instance/ruby#suivre_les_modifications_de_votre_application

Dernière modification: le 30/05/2014 à 12:00 par Alexandre J. (Gandi)