summaryrefslogtreecommitdiff
path: root/tutorial_2_django_proj/slides.md
diff options
context:
space:
mode:
authorKing2017-05-18 18:10:37 +0530
committerGitHub2017-05-18 18:10:37 +0530
commitbc45f44c0dfeb9275cd0492d6f5913b3ceb28c7a (patch)
treee3c44e9d1037076c272ca8777e51aeb510bf4e86 /tutorial_2_django_proj/slides.md
parent5f04ba268534e6195b9d1c0205006b4efc79ac3e (diff)
downloadlearn_django-bc45f44c0dfeb9275cd0492d6f5913b3ceb28c7a.tar.gz
learn_django-bc45f44c0dfeb9275cd0492d6f5913b3ceb28c7a.tar.bz2
learn_django-bc45f44c0dfeb9275cd0492d6f5913b3ceb28c7a.zip
Update slides.md
Diffstat (limited to 'tutorial_2_django_proj/slides.md')
-rw-r--r--tutorial_2_django_proj/slides.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/tutorial_2_django_proj/slides.md b/tutorial_2_django_proj/slides.md
index 21e3afc..4c55e59 100644
--- a/tutorial_2_django_proj/slides.md
+++ b/tutorial_2_django_proj/slides.md
@@ -1,20 +1,20 @@
Tutorial: Creating Your First Django Project
=====================================
-Slide 1 [00:10 | 00:10]
+Slide 1 [00:08 | 00:08]
-------------
** Creating Your First Django Project **
-Slide 2 [00:15 | 00:25]
+Slide 2 [00:13 | 00:21]
--------------
**Learning Objectives**
In this tutorial, we will learn to;
- create django project
- - create django app
+ - initialize django app
-Slide 3 [00:15 | 00:40]
+Slide 3 [00:13 | 00:34]
---------------
**System Requirements**
@@ -22,7 +22,7 @@ Slide 3 [00:15 | 00:40]
- Python 3.5 or higher version
- python3.4-venv
-Slide 4 [00:15 | 00:55]
+Slide 4 [00:15 | 00:49]
---------------
**Pre-requisites**
@@ -31,7 +31,7 @@ In order to follow this tutorial, you need to know;
- django installation and virtual environment
- If not, see the relevant django tutorial on http://spoken-tutorial.org
-Demonstration:
+Demonstration: [01:15 | 2:04]
------------
- Revist the virtual environment created in previous tutorial.
- Activate the virtual environment
@@ -43,7 +43,7 @@ Demonstration:
- *django-admin startproject mysite*
This will create a django project 'mysite'
-Demonstrations:
+Demonstrations: [01:00 | 3:04]
-------------
- So django project is
- collection of settings for an instance of Django
@@ -54,7 +54,7 @@ Demonstrations:
**(Not for narration) Note: For this demonstration we can navigate through project files **
-Slide 4:
+Slide 5: [00:10 | 3:14]
-------------
- You will see such a File structure
@@ -66,7 +66,7 @@ Slide 4:
|-> urls.py
`-> wsgi.py
-Demonstration
+Demonstration [01:00 | 4:14]
---------------
- Check if you have setup Django project correctly;
- *python manage.py runserver*
@@ -74,7 +74,7 @@ Demonstration
Go to the address via web browser
We see the django's index page- "It works"
-Demonstration
+Demonstration [01:30 | 5:44]
--------------
**Initializing a Django App**
- Create a blogging app called blog
@@ -97,7 +97,7 @@ Demonstration
- Return to the parent directory
- *cd ..*
-Demonstration
+Demonstration [00:]
------------
** Adding the app to the settings file**
- Open the *settings.py* file