add test settings

This commit is contained in:
bkfox 2023-06-18 21:58:03 +02:00
parent f8305be4cd
commit 6bd8307fbc
2 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,9 @@ For Django settings see:
https://docs.djangoproject.com/en/3.1/topics/settings/ https://docs.djangoproject.com/en/3.1/topics/settings/
https://docs.djangoproject.com/en/3.1/ref/settings/ https://docs.djangoproject.com/en/3.1/ref/settings/
""" """
from .prod import *
# FOR dev: from .dev import *
# Debug mode: set to True for dev # Debug mode: set to True for dev
# DEBUG = False # DEBUG = False

View File

@ -0,0 +1 @@
from .dev import *