Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the meaning of the default output of manage.py runserver?

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
like image 856
htmldrum Avatar asked Jan 25 '13 13:01

htmldrum


People also ask

What is Runserver py?

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.

What does Runserver do in Django?

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.

Why does Python manage py Runserver not work?

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.


1 Answers

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.

like image 89
htmldrum Avatar answered Oct 16 '22 07:10

htmldrum