reef-technologies / cookiecutter-rt-django

CookieCutter template for Django application projects with docker-compose etc.
BSD 3-Clause "New" or "Revised" License
18 stars 22 forks source link

Set typed env defaults when enabling ENV_FILL_MISSING_VALUES #164

Closed agoncharov-reef closed 7 months ago

agoncharov-reef commented 7 months ago

default=None doesn't work in some cases:

LIFETIME = timedelta(seconds=env.int("LIFETIME"))

The statement above will raise an exception because seconds should be integer, not None. This PR sets typed defaults to mitigate this issue.