Skip to content

Commit

Permalink
Merge pull request #293 from sodevious/master
Browse files Browse the repository at this point in the history
Minor updates to "Starting a django project"
  • Loading branch information
aniav committed Mar 27, 2015
2 parents 1ec4981 + a0a3465 commit e1b0794
Showing 1 changed file with 3 additions and 2 deletions.
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

0 comments on commit e1b0794

Please sign in to comment.