In my django project\'s settings.py file, I have this line :
settings.py
TIME_ZONE = \'UTC\'
But I want my app to run in UTC+2 timezone, s
I found this question looking to change the timezone in my Django project's settings.py file to the United Kingdom.
Using the tz database in jfs' solution I found the answer:
TIME_ZONE = 'Europe/London'