logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

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