ペパボの新しいPaaS、SQALEのクローズドβ招待頂いたのでやってみた。
ダッシュボードで公開鍵を登録して下記。
$ git clone ssh://sqale@gateway.sqale.jp:2222/komagata/foo.git
$ cd foo
$ vi config.ru
require 'rubygems'
require 'rack'
class App
def call(env)
[200, {'Content-Type' => 'text/plain'}, ['foo']]
end
end
run App.new
$ git commit -am'First commit'
$ git push origin master
$ open http://foo-komagata.sqale.jp/
おお、動いた。
他のPaaSとどう差別化していくのか気になりますね。