Heroku Cli

Here is the official doc to install heroku cli.

Get a list of apps you created

heroku apps

If you have multiple heroku remotes or want to execute an app command outside of a local working copy, you can specify the remote name or an explicit app name as follows:

$ heroku apps:info --app example
$ heroku apps:info --remote production

Create application

>> heroku apps:create <app name>

Delete application

>> heroku apps:destroy <you app name>

Check error logs

>> heroku logs --tail
>> heroku logs

Last updated