Boston Python Workshop/Saturday/Web app project: Difference between revisions

imported>Paulproteus
imported>Paulproteus
Line 61:
Let's verify this worked. If you haven't already, and run the command python manage.py runserver. You'll see the following output on the command line:
 
<pre>
Validating models...
0 errors found.
 
Django version 1.02, using settings 'mysite.settings'
Development server is running at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
</pre>
 
You've started the Django development server, a lightweight Web server written purely in Python. The Django maintainers include this web server, but on a "deployment" like alwaysdata.com, you typically tie Django into an existing server like Apache.
Anonymous user