mirror of https://github.com/snachodog/mybuddy.git
Respect environment variables in development settings
This commit is contained in:
parent
b1ee9fe043
commit
f49a54400e
|
@ -3,8 +3,8 @@ from .base import *
|
||||||
# Quick-start development settings - unsuitable for production
|
# Quick-start development settings - unsuitable for production
|
||||||
# https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
|
# https://docs.djangoproject.com/en/4.0/howto/deployment/checklist/
|
||||||
|
|
||||||
SECRET_KEY = "CHANGE ME"
|
SECRET_KEY = os.environ.get("SECRET_KEY") or "DEVELOPMENT!!"
|
||||||
DEBUG = True
|
DEBUG = bool(strtobool(os.environ.get("DEBUG") or "True"))
|
||||||
|
|
||||||
|
|
||||||
# Static files (CSS, JavaScript, Images)
|
# Static files (CSS, JavaScript, Images)
|
||||||
|
|
Loading…
Reference in New Issue