Skip to content

Commit

Permalink
Make local port the default for server
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenbarker committed Nov 9, 2017
1 parent e6a3c35 commit 4847a89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def split(string, delim):
'NAME': os.environ.get('DATABASE_NAME', 'share'),
'USER': os.environ.get('DATABASE_USER', 'postgres'),
'HOST': os.environ.get('DATABASE_HOST', 'localhost'),
'PORT': os.environ.get('DATABASE_PORT', '5432'),
'PORT': os.environ.get('DATABASE_PORT', '35432'),
'PASSWORD': os.environ.get('DATABASE_PASSWORD', None),
'CONN_MAX_AGE': int(os.environ.get('CONN_MAX_AGE', 0 if DEBUG else 60)),
'TEST': {'SERIALIZE': False},
Expand Down

0 comments on commit 4847a89

Please sign in to comment.