Skip to content

Commit

Permalink
Fixed connection errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tonye Jack committed Nov 3, 2019
1 parent 5d66309 commit cc048ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ clean-test-all: clean-build ## Clean build and test assets.
# ---------- Managment Commands ----------------------------
# ----------------------------------------------------------
test:
@python manage.py test
@python manage.py test --no-input
3 changes: 2 additions & 1 deletion django_model_subscription/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@
'mysql': {
'ENGINE': 'django.db.backends.mysql',
'NAME': os.environ['MSQL_DB'],
'HOST': 'localhost',
'HOST': '127.0.0.1',
'PORT': '3306',
'USER': os.environ['MSQL_USER'],
'PASSWORD': os.environ['MSQL_PASSWORD'],
}
Expand Down

0 comments on commit cc048ad

Please sign in to comment.