Skip to content

Commit

Permalink
Merge pull request #168 from timgraham/django-admin
Browse files Browse the repository at this point in the history
Updated to use django-admin (.py suffix not required in Django 1.7)
  • Loading branch information
bmispelon committed Nov 8, 2014
2 parents 2e0ff68 + c6d4cbb commit 0d0e271
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions django_start_project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ In console you should run (remember that you don't type `(myvenv) ~/djangogirls$
Run on Windows:

(myvenv) ~/djangogirls$ python myvenv\Scripts\django-admin.py startproject mysite .
(myvenv) ~/djangogirls$ python myvenv\Scripts\django-admin startproject mysite .

or on Linux or Mac OS:

(myvenv) ~/djangogirls$ django-admin.py startproject mysite .
(myvenv) ~/djangogirls$ django-admin startproject mysite .

`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:
`django-admin` is a script that will create the directories and files for you. You should now have a directory structure which looks like this:

djangogirls
├───manage.py
Expand Down

0 comments on commit 0d0e271

Please sign in to comment.