ぐぬぬ。とりあえずやってみる。つかherokuってなに
heroku.com
で、とりあえず登録してみたけど。なに
なんかheroku
コマンド必要っぽいやん?
% sudo gem install heroku Password: # 中略 Fetching: heroku-3.8.4.gem (100%) ! The `heroku` gem has been deprecated and replaced with the Heroku Toolbelt. ! Download and install from: https://toolbelt.heroku.com ! For API access, see: https://github.com/heroku/heroku.rb # 中略 10 gems installed % which heroku /usr/bin/heroku
途中「gemのheroku
は非推奨になったよ。HerokuToolbelt
を使ってね」と言われた。けどとりあえず無視。gem uninstall
でいつでも巻き戻せそうだし。
チュートリアルアプリケーション
つくってみる。出力全文はここ > heroku tutorial
% cd ~/proj % mkdir heroku_playground % cd heroku_playground % git clone git://github.com/heroku/ruby-sample.git % cd ruby-sample % heroku create % git push heroku master % heroku open Opening rocky-sierra-9195... done
なんか出た
はじめてのheroku
なんか「Create a new app」とか煽られちゃってる
やってやろうじゃないの
え、これしかしてないけど、App URLにアクセスすればいーの??
だめじゃん
Getting Started with Heroku
% cd ~/proj/heroku_playground % git clone git@heroku.com:otiai10firstapp.git % cd otiai10firstapp % vi index.php
<?php echo "Hi";
% git add .
% git status
% git commit
% heroku create
% git push heroku master
%
で、
あ、いけたわ
出力全文はここ。途中「Composer使ってくれ」って言われてる雰囲気あるけど、無視。 > heroku first app
何でつくろうかな
とりあえずペライチで置けるからPHPにしたけどPHPは死んでも嫌だ
なるほど?