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?

More than 3 years have passed since last update.

heroku create エラー

Posted at

はじめに

heroku createを使うときに起きたエラーをまとめてみました。

Name アプリ名 is already taken

heroku create アプリ名
とコマンドを書いてアプリをherokuに作ろうとすると
Name アプリ名 is already taken
と出てしまう。これは自分が付けた名前だけでなく今までに誰かが付けていてもだめなので重ならないように名前をつける。

個数制限

無料版ではアプリを5つまでしか作成できないので、5つ使い切っている人は。
一度アプリ数を確認して

% heroku apps

古いアプリを削除してしまいましょう。

% heroku destroy --app アプリ名

下記のようにでるので

! WARNING: Potentially Destructive Action
! This command will destroy アプリ名 (including all add-ons).
! To proceed, type "アプリ名" or re-run this command with --confirm アプリ名

もう一度アプリ名を入力

これで新しく作れるようになります。

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?