settings: defer SECRET_KEY until after site settings

This allows overriding just `SECRET_FILE` for a custom secret path.
pull/9/head
Ben Boeckel 6 years ago
parent 872af56e2c
commit e02fa53c34

@ -24,7 +24,6 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# See secret.py for how this is generated; uses a file 'secret.txt' in the root
# directory
SECRET_FILE = os.path.join(BASE_DIR, "secret.txt")
SECRET_KEY = get_secret_from_file(SECRET_FILE)
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
@ -142,3 +141,6 @@ try:
from etesync_site_settings import *
except ImportError:
pass
if 'SECRET_KEY' not in locals():
SECRET_KEY = get_secret_from_file(SECRET_FILE)

Loading…
Cancel
Save