Heroku Cli
Here is the official doc to install heroku cli.
Get a list of apps you created
heroku appsIf 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 productionCreate application
>> heroku apps:create <app name>Delete application
>> heroku apps:destroy <you app name>Check error logs
>> heroku logs --tail
>> heroku logsLast updated
Was this helpful?