Reputation: 4719
I can check logs by heroku logs --app=my_app_name
. I want to access app's console as shown in the picture. How can I access by heroku cli?
Upvotes: 10
Views: 10108
Reputation: 4719
To access Heroku app bash by CLI:-
heroku login
heroku ps:exec --app=scoreboard-backend-dev
scoreboard-backend-dev is the app name
Upvotes: 13