Skip to content

Commit

Permalink
Docs: Make example config prepared for PosgtreSQL
Browse files Browse the repository at this point in the history
See #2825

Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Sep 22, 2019
1 parent 0d68a91 commit cf8d074
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions weblate/settings_example.py
Expand Up @@ -39,13 +39,13 @@
DATABASES = {
'default': {
# Use 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'ENGINE': 'django.db.backends.sqlite3',
'ENGINE': 'django.db.backends.postgresql',
# Database name or path to database file if using sqlite3.
'NAME': 'weblate.db',
'NAME': 'weblate',
# Database user, not used with sqlite3.
'USER': 'weblate',
# Database password, not used with sqlite3.
'PASSWORD': 'weblate',
'PASSWORD': '',
# Set to empty string for localhost. Not used with sqlite3.
'HOST': '127.0.0.1',
# Set to empty string for default. Not used with sqlite3.
Expand Down

0 comments on commit cf8d074

Please sign in to comment.