DEV Community

Cover image for Change the time zone on a Heroku app
Paula Santamaría
Paula Santamaría

Posted on • Updated on

Change the time zone on a Heroku app

I discovered Heroku a few weeks ago. It's a great platform to deploy your apps, specially because of their Free plan which I've been using as dev env to work with my team remotely.

Lately I started working on a new project. On this particular project I rely on dates for most of the main operations. The app has a front-end built with Angular 5, and a back-end built with Node.js

Everything was working perfectly on my local environment, but when I deployed to Heroku all the date operations started to behave kind of random (spoilers: it wasn't random at all).

Well, here's the thing. I'm from Argentina, and I had the front-end deployed on a local server, but the back-end was on Heroku and the default region for new heroku apps is "us". So basically my front-end and back-end were on different time zones.

This is not the first time I deal with this kind of date issues (there aren't many local cloud services in my region) so I found the source of the problem almost immediately, and I wanted to share it with you in case you encounter a similar issue.

Luckily Heroku let's us change the timezone of our app simply by adding a new config var.

From the Heroku CLI

  1. Open the command shell
  2. Login to heroku
  3. Navigate to your app's directory
  4. Setup your TZ
heroku config:add TZ="America/Argentina/Buenos_Aires"
Enter fullscreen mode Exit fullscreen mode

From the Heroku dashboard (web)

  1. Login into the Heroku dashboard from a browser
  2. Navigate to the app
  3. Click over the Settings tab
  4. Press the "Reveal Config Vars" button
  5. Set the key to "TZ" and the value to your timezone (E.g.: America/Argentina/Buenos_Aires)
  6. Press the Add button

How do I know which is the correct TZ value

Follow this link to see the complete list of time zones

Check the new TZ value

Use the following command to check the value of the new config var from Heroku CLI:

heroku config:get TZ
Enter fullscreen mode Exit fullscreen mode

For more info about Heroku

What is Heroku?

For more info about Heroku's Config Vars

Configuration and Config vars

Latest comments (36)

Collapse
 
ahisyfa profile image
Ahmad Isyfalana Amin

Thanks Bro

Collapse
 
safwa9amar profile image
Safwa9amar

thanx bro you save my life

Collapse
 
xanthisafk profile image
Abhinav

Thank you very much! 👍

Collapse
 
nirajsharma99 profile image
nirajsharma99

Thankyou so much this saved much of my time. You are awesome ;)

Collapse
 
kk007 profile image
Keval navadiya

If I just add TZ config and I am doing something which requires system time will it use timezone set by using the TZ ?

Collapse
 
paulasantamaria profile image
Paula Santamaría

Yes, that's how it usually works. I'm not sure if there are any specific cases where that's not the case.

For example, if you deploy a node.js app that does something like var now = new Date(), it will use the timezone you specified in your TZ config.

Collapse
 
shashankojhabot profile image
Shashank Ojha • Edited

Thanks for Posting this.
It really helped.

Collapse
 
monishbasaniwal profile image
Monish Basaniwal

Time is a complex thing, and Paula you helped me out today. I never imagined it to be soo easy!

Collapse
 
paulasantamaria profile image
Paula Santamaría

I'm glad, Monish!

Collapse
 
luchorivas profile image
Luis

Sos muy crack Pau

Collapse
 
paulasantamaria profile image
Paula Santamaría

jajaja justo te iba a decir que no me habias dejado un comentario. Gracias, green mario.

Collapse
 
raxraj profile image
Ashutosh Kumar

Saved my little ar**!! Can't thank you enough Buddy!

Collapse
 
sinisimattia profile image
Mattia Sinisi

2 years later and this article is STILL useful

Collapse
 
paulasantamaria profile image
Paula Santamaría

Thanks Mattia, glad to hear that :)

Collapse
 
confusedcoder1 profile image
Shristi Singh

I really was calculating times to adjust them, when I found this. I thought as regions are permanent timezones must be too. But huh. You saved me. Thanksss.

Collapse
 
madza profile image
Madza

Thanks, just found it useful 😉👍

Collapse
 
naothomachida profile image
Naotho Machida

Thanks! Solved

Collapse
 
felipealvarez23 profile image
felipealvarez23

Thank you men, It worked

Collapse
 
vjnvisakh profile image
Visakh Vijayan

Thank you so much