Created
April 29, 2013 05:52
-
-
Save is8r/5479923 to your computer and use it in GitHub Desktop.
HerokuにLokkaを設置する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ローカルでlokkaを動かす(http://localhost:9292/) | |
git clone git://github.com/lokka/lokka.git xxx | |
cd xxx | |
bundle install --without=production:test | |
bundle exec rake db:setup | |
bundle exec rackup | |
#herokuの設定(http://xxx.heroku.com/) | |
heroku create xxx | |
git push heroku master | |
heroku addons:add heroku-postgresql:dev | |
heroku pg:promote HEROKU_POSTGRESQL_ | |
heroku run rake db:setup | |
heroku open |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment