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?

JawsDBのアドオンを追加しようとした時に発生したエラーの解消法

Posted at

やりたいこと

  1. JawsDBのアドオンを追加すること
    データベースのMySQL(MariaDB)を利用してWebアプリを作成しました。
    しかし、Herokuが公式にサポートしているデータベースはPostgreSQLなので、そのままでは正しく動作しません。
    そこで、JawsDBというアドオンを利用すればHerokuでもMySQLが使えるようになるということがわかったので、以下のコマンドを実行してJawsDBのアドオンを追加しようとしました。
heroku addons:create jawsdb-maria:kitefin

発生したエラーの内容

apple@appurunoAir laravel-samuraimart % heroku addons:create jawsdb-maria:kitefin
 ›   Error: The following error occurred:
 ›     Missing required flag app
 ›   See more help with --help

解決法

--app フラグを使って、アドオンを追加したいHerokuアプリ名を指定した

heroku addons:create jawsdb-maria:kitefin --app app-name

※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?