You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the outdated versions of the used Django version.
The documentation need a rework to correct the dependencies.
Add the missing Application code and explanations.
Copy file name to clipboardExpand all lines: Guides/Python/Django.md
+59-18Lines changed: 59 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -26,8 +26,8 @@ example app specifies [Django][django], [MySQL driver][mysql-driver] and
26
26
looks like this:
27
27
28
28
~~~
29
-
Django==1.7.1
30
-
gunicorn==19.1.1
29
+
Django==1.8.3
30
+
gunicorn==19.3
31
31
MySQL-python==1.2.5
32
32
~~~
33
33
@@ -60,13 +60,49 @@ Left from the colon we specified the **required** process type called `web`
60
60
followed by the command that starts the app and listens on the port specified
61
61
by the environment variable `$PORT`.
62
62
63
+
### The Actual Application Code
64
+
65
+
The actual application code is taken from the [official Django tutorial](https://docs.djangoproject.com/en/1.8/intro/tutorial01/) and explains in detail how the applications works.
0 commit comments