Since the Galaxy servers are in us-east-1, does Date.now()
evaluate to a time in Eastern timezone? If so, is there a way to set the server-side timezone for our Meteor app?
yes, you can just pass the TZ
environment variable like so:
"galaxy.meteor.com": {
"env": {
"TZ": "Etc/UTC", // or whatever you like
}
}
1 Like
Perfect. Thanks, Serkan!
1 Like