Corrected some mistakes

This commit is contained in:
M.Ravi 2017-07-04 08:47:55 +02:00
parent f419ce784f
commit 8bb7eee418
2 changed files with 6 additions and 11 deletions

View file

@ -1 +1 @@
# from .base import * from .base import * # flake8: noqa

View file

@ -191,11 +191,7 @@ CMS_TEMPLATES = (
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', 'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'app', 'NAME': 'app'
'HOST': 'localhost',
'USER': 'ubuntu',
'PASSWORD': 'Qwerty123',
} }
} }
@ -480,11 +476,10 @@ STRIPE_API_PUBLIC_KEY = env('STRIPE_API_PUBLIC_KEY')
DEBUG = True DEBUG = True
# not used if DEBUG:
# if DEBUG: from .local import * # flake8: noqa
# from .local import * else:
# # else: from .prod import * # flake8: noqa
# # from .prod import *
ANONYMOUS_USER_NAME = 'anonymous@ungleich.ch' ANONYMOUS_USER_NAME = 'anonymous@ungleich.ch'