Corrected some mistakes
This commit is contained in:
parent
f419ce784f
commit
8bb7eee418
2 changed files with 6 additions and 11 deletions
|
@ -1 +1 @@
|
|||
# from .base import *
|
||||
from .base import * # flake8: noqa
|
||||
|
|
|
@ -191,11 +191,7 @@ CMS_TEMPLATES = (
|
|||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||||
'NAME': 'app',
|
||||
'HOST': 'localhost',
|
||||
'USER': 'ubuntu',
|
||||
'PASSWORD': 'Qwerty123',
|
||||
|
||||
'NAME': 'app'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -480,11 +476,10 @@ STRIPE_API_PUBLIC_KEY = env('STRIPE_API_PUBLIC_KEY')
|
|||
|
||||
DEBUG = True
|
||||
|
||||
# not used
|
||||
# if DEBUG:
|
||||
# from .local import *
|
||||
# # else:
|
||||
# # from .prod import *
|
||||
if DEBUG:
|
||||
from .local import * # flake8: noqa
|
||||
else:
|
||||
from .prod import * # flake8: noqa
|
||||
|
||||
|
||||
ANONYMOUS_USER_NAME = 'anonymous@ungleich.ch'
|
||||
|
|
Loading…
Reference in a new issue