diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-09-07 21:47:02 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-09-07 21:47:02 +0300 |
commit | 8b76cad15aa84d8ccd7cea31deb7ae64381c4c3c (patch) | |
tree | 65aed8f7bf15c68750e91f2630ca70937010ae35 /settings.py | |
parent | 1631111a7f59e5f4509ae4ae7c1de628864b1d6d (diff) | |
download | troggle-8b76cad15aa84d8ccd7cea31deb7ae64381c4c3c.tar.gz troggle-8b76cad15aa84d8ccd7cea31deb7ae64381c4c3c.tar.bz2 troggle-8b76cad15aa84d8ccd7cea31deb7ae64381c4c3c.zip |
EPOCH = 1970-01-01
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/settings.py b/settings.py index 71cce39..7548c5c 100644 --- a/settings.py +++ b/settings.py @@ -1,4 +1,6 @@ import sys +from datetime import date + """ Django settings for troggle project. @@ -23,7 +25,9 @@ if 'runserver' in sys.argv: DEVSERVER = True else: DEVSERVER = False - + +EPOCH = date.fromisoformat('1970-01-01') + # default value, then gets overwritten by real secrets SECRET_KEY = "not-the-real-secret-key-a#vaeozn0---^fj!355qki*vj2" |