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

Made the startproject warning a little more prominent. #174

Merged
merged 1 commit into from
Nov 9, 2014
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
4 changes: 2 additions & 2 deletions django_start_project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ In console you should run (remember that you don't type `(myvenv) ~/djangogirls$

> Remember to run everything in the virtualenv. If you don't see a prefix `(myvenv)` in your console you need to activate your virtualenv. We explained how to do that in the __Django installation__ chapter in the __Working with virtualenv__ part.

> __Note:__ Make sure you include the period (`.`) at the end of the command, it's important.

Run on Windows:

(myvenv) ~/djangogirls$ python myvenv\Scripts\django-admin startproject mysite .
Expand All @@ -27,6 +25,8 @@ or on Linux or Mac OS:

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

> **Note** Double-check that you included the period (`.`) at the end of the command, it's important.

`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
Expand Down