This file contains 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
# WordPress Heroku with ClearDB | |
# Clone the repository from Github | |
git clone git://github.com/masainox/wordpress-heroku-with-cleardb.git | |
cd wordpress-heroku-with-cleardb | |
# Create your app | |
heroku create YOUR_APP_NAME -s cedar -b git://github.com/iphoting/heroku-buildpack-php-tyler.git | |
# Add a database to your app |
This file contains 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 |
This file contains 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 https://github.com/masainox/polka.git -b 0.0.1-for-heroku | |
cd polka | |
heroku create --stack cedar | |
# deploy to heroku | |
git push heroku 0.0.1-for-heroku:master |
This file contains 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 git://github.com/masainox/wordpress-heroku.git -b language-ja | |
cd wordpress-heroku | |
heroku create -b git://github.com/iphoting/heroku-buildpack-php-tyler.git | |
heroku addons:add heroku-postgresql:dev | |
heroku pg:promote `heroku config | grep 'HEROKU_POSTGRESQL_' | sed -e "s/\:.*//"` |
This file contains 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
def hoge | |
'hoge' | |
end |