› Ruby 勉強会 › railsアプリをherokuで動かす
railsアプリをherokuで動かす
2014年06月30日
herokuデプロイに必要な作業をダイジェストでお送りします。
■Gemfilesの追加記述
■config/database.yml
■herokuへデプロイ
■その他
■Gemfilesの追加記述
gem 'sqlite3', group: [:development, :test]
gem 'rails_12factor', group: [:production]
gem 'pg', group: [:production]
■config/database.yml
production:
adapter: postgresql
encoding: utf8
database:
pool: 5
username:
password:
■herokuへデプロイ
heroku create myapp
git push heroku master
heroku addons:add heroku-postgresql
heroku run rake db:migrate
heroku open
■その他
#デバッグ、ログの確認
heroku logs
#上限に達して削除が必要な場合
heroku list
heroku apps:destroy myapp
# ローカル開発環境でprecompile
$ rake assets:precompile RAILS_ENV=production
Posted by kanedayo at 23:04│Comments(0)