2012-04-11 heroku
heroku 触らないと死ぬらしいので、heroku 触って PHP を動かしてみた。環境は windows7(64bit)環境。以下手順。
$ heroku login Enter your Heroku credentials. Email: (登録したメールアドレス) Password(typing will be hidden): (登録したパスワード) Could not find an existing public key. Would you like to generate one? [Yn] Y Generating new SSH public key. Uploading ssh public key C:/Users/mgng/.ssh/id_rsa.pub
$ mkdir -p /C/work/heroku/mgng/ $ cd /C/work/heroku/mgng/ $ vi index.php <?php echo "Hello, mgng index";
$ git init $ git config --global user.name "mgng" $ git config --global user.email mgng@local $ git add . $ git commit -m "initial commit"
$ heroku create --stack cedar mgng
$ git push heroku master
で、.htaccessだとか、php.ini だとか設定してとりあえず動いてるのがこれ。
拍子抜けするくらい簡単。