How to set the timezone in Django?

后端 未结 8 917
萌比男神i
萌比男神i 2020-11-29 19:33

In my django project\'s settings.py file, I have this line :

TIME_ZONE = \'UTC\'

But I want my app to run in UTC+2 timezone, s

8条回答
  •  悲哀的现实
    2020-11-29 19:59

    Here is the list of valid timezones:

    http://en.wikipedia.org/wiki/List_of_tz_database_time_zones

    You can use

    TIME_ZONE = 'Europe/Istanbul'
    

    for UTC+02:00

提交回复
热议问题