Created
February 8, 2013 11:37
-
-
Save masainox/4738375 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
git clone [email protected]:masainox/redmine.git | |
cd redmine | |
heroku create | |
git checkout 2.2-stable-for-heroku | |
git push heroku 2.2-stable-for-heroku:master | |
bundle exec rake generate_secret_token_for_heroku | |
heroku run rake db:migrate | |
heroku run rake redmine:load_default_data | |
# open app | |
heroku open |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for this!!! To make it work and to complete previous comment, I had to :