Boston Python Workshop/Friday handout/OS X 10.6 or 10.5: Difference between revisions

Content added Content deleted
imported>Paulproteus
imported>Paulproteus
Line 75: Line 75:
* Open a new Terminal window and type the following:
* Open a new Terminal window and type the following:
cd ~/Desktop/django_projects
cd ~/Desktop/django_projects
django-admin.py startproject test
django-admin.py startproject myproject
* Both commands should provide no output.
* Both commands should provide no output.
* Once that's finished, type the following in the Terminal window:
* Once that's finished, type the following in the Terminal window:
cd test
cd myproject
python manage.py runserver
python manage.py runserver
* The first command should produce no output. The second command will put out a bunch of output, then just sit there until you cancel it (2 steps from now).
* The first command should produce no output. The second command will put out a bunch of output, then just sit there until you cancel it (2 steps from now).