fixed DB setting

This commit is contained in:
vabene1111 2022-09-19 07:34:26 +02:00
parent cad93b2dd1
commit 13d498658c

View File

@ -322,17 +322,17 @@ else:
}
# Local testing DB
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'HOST': 'localhost',
'PORT': 5432,
'USER': 'postgres',
'PASSWORD': 'postgres', # set to local pw
'NAME': 'tandoor_app',
'CONN_MAX_AGE': 600,
}
}
# DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.postgresql',
# 'HOST': 'localhost',
# 'PORT': 5432,
# 'USER': 'postgres',
# 'PASSWORD': 'postgres', # set to local pw
# 'NAME': 'tandoor_app',
# 'CONN_MAX_AGE': 600,
# }
# }
# SQLite testing DB
# DATABASES = {