ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| # 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 |
| #!/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/\:.*//"` |