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.

【Ruby】Herokuでアプリを削除する方法

Posted at

【コード】

heroku app 
> enter

<Did you mean app? [y/n]
> y enter

アプリ名が表示

heroku apps:destroy --app アプリ名

>アプリ名を再入力

【解説】
Herokuで自動生成されたアプリ名がわからなくなってしまい,
解決に時間をかなり使ったので,
アプリ名の確認と削除の方法を共有したいと思います.

<作成したアプリの確認>

1行目の

heroku app

でアプリ名を確認します.
Did you mean app? [y/n]と問われるので,
yでenterを押します.

すると作成したアプリ名の一覧が表示されます.

<作成したアプリの削除>

heroku apps:destroy --app 削除したいアプリ名

を入力すると, > が表示され,入力待ちとなるので,
再度削除したいアプリ名を入力し,
enterを押すと指定したアプリが削除されます.

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?