Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor updates to "Starting a django project" #293

Merged
merged 2 commits into from
Mar 27, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions en/django_start_project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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`.
Expand Down