Skip to content

Instantly share code, notes, and snippets.

@dictav
Last active December 11, 2015 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dictav/4640042 to your computer and use it in GitHub Desktop.
Save dictav/4640042 to your computer and use it in GitHub Desktop.

NDS 30 LT

https://gist.github.com/4640042

Heroku

iOS + Web Service

  • Web Service を使った iOS アプリを作りたい
  • レンタルサーバーとかお金かかるし構築めんどい
  • ギー潟にサーバー立てるのもなあ

Heroku (pronounced her-oh-koo)

  • 負荷が少なければ無料で使える
  • Clojure,Java,Node.js,Play,Python,Ruby,Scala

Deploy

  1. $ heroku create
  2. cooding...
  3. $ git push heroku master

Procfile で簡単管理

$ cat Procfile

web: bundle exec rails start
worker:  bundle exec rake jobs:work

スケーリングも簡単

$ heroku ps:scale web=2

1dyno $0.05/hour

Add-ons で機能拡張

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment