Skip to content
iwhurtafly edited this page Jan 13, 2013 · 5 revisions

You can manage your add-ons either through the command line interface or through the Heroku Dashboard web interface.

Herokuのアドオンに関しては、コマンドラインのインターフェース、または、web上にあるHerokuのダッシュボードを使用することで管理することが可能です。

Using the command line interface コマンドラインのインターフェースを使用する

You can view your current add-ons within an app with the heroku addons command. アプリケーション内で使用しているアドオンは、heroku addonsコマンドを実行することで、一覧を見ることが可能です。

:::term
$ heroku addons
newrelic:gold
heroku-postgresql:dev

Adding an add-on:

アドオンの追加方法は下記となります。:

:::term
$ heroku addons:add newrelic:standard
Adding newrelic:standard to myapp...done.

Removing an add-on:

アドオンの削除方法は下記となります。:

:::term
$ heroku addons:remove newrelic:standard
Removing newrelic:standard from myapp...done.

Upgrade an add-on:

アドオンの更新方法は下記となります。:

:::term
$ heroku addons:upgrade newrelic:professional
Upgrading newrelic:professional to myapp... done.

Open an add-on dashboard

アドオンのダッシュボードをオープンします。

:::term
$ heroku addons:open newrelic
Opening newrelic:professional for myapp.

Using the Dashboard ダッシュボードを使用する

List installed add-ons

To see a list of currently installed add-ons for any application, visit Heroku Dashboard, and click on the name of the app or click on the Resources tab when viewing an app.

インストール済みのアドオンをリスト化する

現在、インストール済みのアドオンをリストで確認するには、Heroku Dashboardを訪問し、各アプリケーションの名前をクリックするか、アプリケーションを参照している際に、リソースタブをクリックして下さい。

Add an add-on

Visit the add-on catalog to find and install add-ons.

Remove an add-on

From the app Resources tab, find the add-on resource and click the remove icon next to the name, and then click Apply Changes to remove the add-on.

Remove add-on resources

Configure an add-on

From the app Resources tab, find the add-on resource you want to configure and click on the name. This will take you to a configration page that allows you to change the settings for the add-on.

Clone this wiki locally