DEV Community

Jesse Smith Byers
Jesse Smith Byers

Posted on

9

How To Update A Deployed App On Heroku

Every time I make a small update to an app I've already deployed, I find myself going back to the Heroku documentation. Here's a quick guide on how to update an app that you've already deployed.

1. Clone the repository from GitHub to your local device:

git clone <YOUR HTTPS URL FROM GITHUB>
Enter fullscreen mode Exit fullscreen mode

2. Make your changes, and commit them to GitHub:

git add .
git commit -m "<YOUR COMMIT MESSAGE>"
git push origin <YOUR BRANCH NAME>
Enter fullscreen mode Exit fullscreen mode

3. Login to your Heroku account:

heroku login
Enter fullscreen mode Exit fullscreen mode

Follow the directions on the screen to login to your account through the browser, then return to the terminal.

4. Set remote for your project:

heroku git:remote -a <YOUR PROJECT NAME>
Enter fullscreen mode Exit fullscreen mode

5. Push to Heroku master to deploy updates:

git push heroku master
Enter fullscreen mode Exit fullscreen mode

And that's it! 5 simple steps. Hopefully this might save you from digging through the documentation each time!

Sentry image

Hands-on debugging session: instrument, monitor, and fix

Join Lazar for a hands-on session where you’ll build it, break it, debug it, and fix it. You’ll set up Sentry, track errors, use Session Replay and Tracing, and leverage some good ol’ AI to find and fix issues fast.

RSVP here →

Top comments (6)

Collapse
 
fransco35 profile image
Fransco35

Thanks, your post has been of great help to me.

Collapse
 
tobisam2000 profile image
Oluwatobiloba Adesokan

helpful, thanks

Collapse
 
steve_cons profile image
Stefano

thanks a lot!

Collapse
 
goran7777 profile image
Goran

Thank you buddy (Y)

Collapse
 
sajjadalidev profile image
Sajjad Ali

Thanks man it helps me :)

Collapse
 
sreebash profile image
Sreebash Chandra Das

Thanks. It worked!

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay