-
Notifications
You must be signed in to change notification settings - Fork 9
managing add ons
You can manage your add-ons either through the command line interface or through the Heroku Dashboard web interface.
Herokuのアドオンに関しては、コマンドラインのインターフェース、または、web上にあるHerokuのダッシュボードを使用することで管理することが可能です。
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
:::term
$ heroku addons:add newrelic:standard
Adding newrelic:standard to myapp...done.
:::term
$ heroku addons:remove newrelic:standard
Removing newrelic:standard from myapp...done.
:::term
$ heroku addons:upgrade newrelic:professional
Upgrading newrelic:professional to myapp... done.
:::term
$ heroku addons:open newrelic
Opening newrelic:professional for myapp.
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を訪問し、各アプリケーションの名前をクリックするか、アプリケーションを参照している際に、リソースタブをクリックして下さい。
Visit the add-on catalog to find and install add-ons.
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.
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.