Fix postgres settings.

This commit is contained in:
Santiago L 2021-02-22 14:49:43 +01:00
parent 22b860e855
commit c35ca979c5
1 changed files with 2 additions and 2 deletions

View File

@ -120,8 +120,8 @@ DATABASES = {
'NAME': 'test_myapp', 'NAME': 'test_myapp',
'USER': 'testuser', 'USER': 'testuser',
'PASSWORD': 's3cretPass', 'PASSWORD': 's3cretPass',
'HOST': 'postgres', 'HOST': 'localhost',
'PORT': 5432, 'PORT': '5432',
'CONN_MAX_AGE': 60*10 # Enable persistent connections 'CONN_MAX_AGE': 60*10 # Enable persistent connections
} }
} }