Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Prin committed Mar 17, 2016
1 parent 422d465 commit 1f299ee
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 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': '<your-database-name>',
'USER': '<your-database-user>',
'PASSWORD': '<your-database-password>',
'HOST': '<your-cloudsql-host>',
'NAME': 'polls',
'USER': 'django',
'PASSWORD': 'django123',
'HOST': '173.194.231.131',
'PORT': '3306',
}
}
Expand Down
8 changes: 4 additions & 4 deletions managed_vms/django_cloudsql/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': '<your-database-name>',
'USER': '<your-database-user>',
'PASSWORD': '<your-database-password>',
'HOST': '<your-database-host>',
'NAME': 'polls',
'USER': 'django',
'PASSWORD': 'django123',
'HOST': '173.194.231.131',
'PORT': '3306',
}
}
Expand Down
6 changes: 3 additions & 3 deletions monitoring/api/v3/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
google-api-python-client==1.5.0
httplib2==0.9.2
oauth2client==1.5.1
oauth2client==2.0.1
pyasn1==0.1.9
pyasn1-modules==0.0.8
rsa==3.2.3
simplejson==3.8.1
rsa==3.3
simplejson==3.8.2
six==1.10.0
uritemplate==0.6
wheel==0.24.0

0 comments on commit 1f299ee

Please sign in to comment.