File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
container_engine/django_tutorial Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Getting started with Django on Google Container Engine
2
2
3
3
This repository is an example of how to run a [ Django] ( https://www.djangoproject.com/ )
4
- app on Google Container Engine. It uses the [ Writing your first Django app] (https://docs.djangoproject.com/en/1
5
- .9/intro/tutorial01/) Polls application as the example app to deploy. From here on out, we refer to this app as
4
+ app on Google Container Engine. It uses the
5
+ [ Writing your first Django app] ( https://docs.djangoproject.com/en/1.11/intro/tutorial01/ )
6
+ Polls application as the example app to deploy. From here on out, we refer to this app as
6
7
the 'polls' application.
7
8
8
9
Original file line number Diff line number Diff line change 87
87
'USER' : os .getenv ('DATABASE_USER' ),
88
88
'PASSWORD' : os .getenv ('DATABASE_PASSWORD' ),
89
89
'HOST' : '127.0.0.1' ,
90
- 'PORT' : '3306 ' ,
90
+ 'PORT' : '5432 ' ,
91
91
}
92
92
}
93
93
# [END dbconfig]
You can’t perform that action at this time.
0 commit comments