Skip to content

Instantly share code, notes, and snippets.

@is8r
Created April 29, 2013 05:52
Show Gist options
  • Save is8r/5479923 to your computer and use it in GitHub Desktop.
Save is8r/5479923 to your computer and use it in GitHub Desktop.
HerokuにLokkaを設置する
#ローカルで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