Skip to content

Commit 4847a89

Browse files
committed
Make local port the default for server
1 parent e6a3c35 commit 4847a89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def split(string, delim):
202202
'NAME': os.environ.get('DATABASE_NAME', 'share'),
203203
'USER': os.environ.get('DATABASE_USER', 'postgres'),
204204
'HOST': os.environ.get('DATABASE_HOST', 'localhost'),
205-
'PORT': os.environ.get('DATABASE_PORT', '5432'),
205+
'PORT': os.environ.get('DATABASE_PORT', '35432'),
206206
'PASSWORD': os.environ.get('DATABASE_PASSWORD', None),
207207
'CONN_MAX_AGE': int(os.environ.get('CONN_MAX_AGE', 0 if DEBUG else 60)),
208208
'TEST': {'SERIALIZE': False},

0 commit comments

Comments
 (0)