Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check instance is running in heroku

Tags:

php

heroku

I am creating a website on PHP.

I have cloned the source code. using git clone

Create an app on Heroku heroku create and deployed my code on heroku using command git push heroku master.

Now i want to check either my instance is running or not. How to check?

Thanks for your time.

like image 775
Voyageur Avatar asked Nov 06 '25 12:11

Voyageur


1 Answers

You can run heroku open, which will open your app in your default web browser. Of course you can also manually navigate to your app's URL, which should be be https://<your-app-name>.herokuapp.com.

You can also run heroku ps which will show your app's dynos and their status.

Both of these heroku commands accept an --app argument in case you want to run them from outside of your project directory or have multiple apps configured.

like image 139
Chris Avatar answered Nov 09 '25 04:11

Chris



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!