Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

Heroku Manager - Manage Heroku Apps | Online Free DevTools by Hexmos

Manage Heroku apps effortlessly with Heroku Manager. Deploy, monitor, and scale your applications directly from the command line. Free online tool, no registration required.

heroku

Create and manage Heroku apps. More information: https://devcenter.heroku.com/articles/heroku-cli#get-started-with-the-heroku-cli.

  • Log in to your Heroku account:

heroku login

  • Create a Heroku app:

heroku create

  • Show logs for an app:

heroku logs --app {{app_name}}

  • Run a one-off process inside a dyno (Heroku virtual machine):

heroku run {{process_name}} --app {{app_name}}

  • List dynos (Heroku virtual machines) for an app:

heroku ps --app {{app_name}}

  • Permanently destroy an app:

heroku destroy --app {{app_name}}

See Also