Fix manifest file storage

This commit is contained in:
Gabriel Augendre 2020-08-18 10:39:25 +02:00
parent a66bf5e95c
commit 74cd886080

View file

@ -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",