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 = {
|
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'
|
||||||
|
|
Loading…
Reference in a new issue