From 14c13aed4e5671a353aaeea5ffe245a56910d341 Mon Sep 17 00:00:00 2001 From: Nicole Dominguez Date: Thu, 26 Mar 2015 23:10:22 -0400 Subject: [PATCH 1/2] Update note about including a period in the startproject command --- en/django_start_project/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/django_start_project/README.md b/en/django_start_project/README.md index 74e1a655057..d35aa1ac634 100644 --- a/en/django_start_project/README.md +++ b/en/django_start_project/README.md @@ -23,7 +23,7 @@ On Windows: (myvenv) C:\Users\Name\djangogirls> python myvenv\Scripts\django-admin.py startproject mysite . -> **Note** Double-check that you included the period (`.`) at the end of the command, it's important. +> **Note** Double-check that you included the period (`.`) at the end of the command, it's important because it tells the script to install Django in your current directory. `django-admin.py` is a script that will create the directories and files for you. You should now have a directory structure which looks like this: From a0a3465e757cd04a1373b5e5d2a44bc41d222303 Mon Sep 17 00:00:00 2001 From: Nicole Dominguez Date: Thu, 26 Mar 2015 23:13:24 -0400 Subject: [PATCH 2/2] Change order of lines for time zone settings Change order to display in the order that they are displayed in the newly generated settings.py file --- en/django_start_project/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/en/django_start_project/README.md b/en/django_start_project/README.md index d35aa1ac634..f99983434f9 100644 --- a/en/django_start_project/README.md +++ b/en/django_start_project/README.md @@ -52,9 +52,10 @@ It would be nice to have the correct time on our website. Go to http://en.wikipe You should find lines that contain `USE_TZ` and `TIME_ZONE` and modify them to look like this, substituting `Europe/Berlin` with your relevant time zone: - USE_TZ = False TIME_ZONE = 'Europe/Berlin' + USE_TZ = False + ## Setup a database There's a lot of different database software that can store data for your site. We'll use the default one, `sqlite3`.