1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/weblate_ynh.git synced 2024-10-01 13:35:04 +02:00

apparently django default settings are wrong

This commit is contained in:
Laurent Peuch 2017-10-13 13:51:06 +02:00 committed by GitHub
parent c80bb97eff
commit d08a15ba31

View file

@ -46,9 +46,9 @@ DATABASES = {
# Database password # Database password
'PASSWORD': '__DB_PWD__', 'PASSWORD': '__DB_PWD__',
# Set to empty string for localhost # Set to empty string for localhost
'HOST': '', 'HOST': 'localhost',
# Set to empty string for default # Set to empty string for default
'PORT': '', 'PORT': '5432',
} }
} }