Fix manifest file storage
This commit is contained in:
parent
a66bf5e95c
commit
74cd886080
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ SECRET_KEY = os.getenv(
|
|||
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = os.getenv("DEBUG", "true").lower() == "true"
|
||||
TESTING = os.getenv("TESTING", "true").lower() == "true"
|
||||
TESTING = os.getenv("TESTING", "false").lower() == "true"
|
||||
|
||||
ALLOWED_HOSTS = [
|
||||
"localhost",
|
||||
|
|
Reference in a new issue