add a settings file for flakes

This commit is contained in:
Andreas Zweili 2022-02-01 21:12:32 +01:00
parent e2d8f9f19e
commit 70d8f35a01
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
from .base import *
ALLOWED_HOSTS = [
'localhost',
'127.0.0.1',
]
CSRF_TRUSTED_ORIGINS = [
'http://localhost:8000',
]
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = "foo"
DEBUG = True
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'postgres',
'USER': 'postgres',
'HOST': 'localhost',
'PORT': 5432,
'PASSWORD': 'password',
}
}