Heroku の Toolbelt をインストール
Heroku の Getting Started with Heroku から開始する。
Step 2: Install the Heroku Toolbelt
Heroku のアカウント作成を済ませてから、Toolbelt のインストールを開始。
Heroku Toolbelt のページから Standalone を選択。
表示されるコマンド 'wget -qO- https://toolbelt.heroku.com/install.sh | sh' を実行。
[paraches@paraches.com ~]$ wget -qO- https://toolbelt.heroku.com/install.sh | sh This script requires superuser access to install software. You will be prompted for your password by sudo. Add the Heroku CLI to your PATH using: $ echo 'PATH="/usr/local/heroku/bin:$PATH"' >> ~/.profile Installation complete [paraches@paraches.com ~]$
でも、~/.profile がないので .bashrc に書き込む。
前に rvm も加えてあったのでこんな感じにした。
PATH=/usr/local/heroku/bin:$PATH:$HOME/.rvm/bin
これでログインし直せば heroku のコマンドが使える。
[paraches@paraches.com ~]$ heroku version heroku-toolbelt/2.39.2 (x86_64-linux) ruby/1.9.3 [paraches@paraches.com ~]$
Step 3: Login
さっそくログインしてみる。
[paraches@paraches.com ~]$ heroku login Enter your Heroku credentials. Email: xxxxxxxx@gmail.com Password (typing will be hidden): Could not find an existing public key. Would you like to generate one? [Yn] Generating new SSH public key. Uploading SSH public key /home/paraches/.ssh/id_rsa.pub... done Authentication successful. [paraches@paraches.com ~]$
無事ログインできた〜。