My customization
I followed this tutorial, with only a minor customization.
- Use mysql2 instead of mysql in database.yml
- Use master branch in Red Mine
- Remove sqlite3 related gems in Gemfile
- Add themes in
public/themes, and switch theme inAdministrator/settings/display
Deploying with Heroku
I added a few steps from above tutorial, since this is my first deploy to Heroku.
- Installing the Heroku toolbelt
- Use
heroku loginto switch to heroku env. - Use
heroku keys:add ~/.ssh/id_rsa_x.pubto setup key for ssh session when doing git push - Restart heroku by
heroku ps:restartand useheroku opento try out your app - Edit config/environment.rb to comment out the exit in case of plugins in vendor:
# exit 1
Note: