What's the meaning of the default output of manage.py runserver? Can't find any documentation on it:
[25/Jan/2013 07:45:59] "GET / HTTP/1.1" 200 149
1) python manage.py runserver This command you'll probably run the most of all commands. It means to run a emulated server on your local computer. So, after running it, you can go to localhost:8000 or 127.0. 0.1:8000.
The runserver command is a built-in subcommand of Django's manage.py file that will start up a development server for this specific Django project.
The site could be temporarily unavailable or too busy. Try again in a few moments. If you are unable to load any pages, check your computer's network connection. If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web.
I've marked up the default output to help explain its meaning:
([25/Jan/2013 07:45:59]) ("GET / HTTP/1.1") (200) (149)
(Datetime request was sent) (telnet/netcat-style plaintext request string) (HTTP status code) (bytes sent as response)
All these can be confirmed in your favorite browsers dev console.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With