Skip to content

Commit

Permalink
Merge pull request #210 from GoogleCloudPlatform/fixdjango
Browse files Browse the repository at this point in the history
Remove database settings
  • Loading branch information
waprin committed Mar 1, 2016
2 parents c7a3957 + 7707c2e commit 96a1da1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions container_engine/django_tutorial/mysite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'polls',
'USER': 'django_user',
'PASSWORD': 'django',
'HOST': '173.194.104.255',
'NAME': '<your-database-name>',
'USER': '<your-database-user>',
'PASSWORD': '<your-database-password>',
'HOST': '<your-cloudsql-host>',
'PORT': '3306',
}
}
Expand Down

0 comments on commit 96a1da1

Please sign in to comment.