0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Herokuが提供しているMailgunのアドオンを追加した時に出るエラーの解消法

Posted at

やったこと

本番環境(Heroku)のSMTPサーバーとして、Herokuが提供しているMailgunのアドオンを利用したいと思い、以下のコマンドを実行してMailgunのアドオンを追加しようとした

heroku addons:create mailgun:starter

発生したエラーの内容

以下のようなエラーが発生し、appフラグが不足していることを示していた。

 ›   Error: The following error occurred:
 ›     Missing required flag app
 ›   See more help with --help

解決法

Appコマンドを実行する際に、--app オプションで対象のアプリ名を指定

例えば、アプリ名が my-app-name の場合、以下のようにコマンドを修正します:

heroku addons:create mailgun:starter --app my-app-name

※アプリ名が不明な場合は、、、

heroku apps

コマンドで確認しましょう

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?