-
Notifications
You must be signed in to change notification settings - Fork 9
Using cli plugins
shunter1112 edited this page Sep 7, 2013
·
1 revision
プラグインはデベロッパーに、機能やコマンドを追加しながら、Herokuのコマンドインターフェースの機能性を拡張させる事ことができます。
:::term
=== Plugins
plugins # list installed plugins
plugins:install <url> # install the plugin from the specified git url
plugins:uninstall <url/name> # remove the specified plugin
plugins:update <url/name> # update a plugin, if specified, or update all plugins
プラグインをインストールするために、プラグインのGitのURLを知っている必要があります。heroku plugins:install
コマンドを使って、Gitのリポジトリを指定します :
:::term
$ heroku plugins:install git://github.com/ddollar/heroku-accounts.git
現在インストールされているプラグインの一覧を見るためには以下のコマンドを入力します :
:::term
$ heroku plugins
=== Installed Plugins
heroku-accounts
:::term
$ heroku plugins:uninstall heroku-accounts
インストールされている全てのプラグインを更新するためには、以下のコマンドを入力します :
:::term
$ heroku plugins:update
特定のプラグインを更新するためには以下のようにします :
:::term
$ heroku plugins:update heroku-accounts