[Answered ]-Which server did I use,when I configure django admin tool after typing "python manage.py runserver"?

2👍

You are using Django’s development server, which as you say is a simple http server written in Python, and runs in the Python process you start with the “python manage.py runserver” command. Note that this server is not meant for production use. For example, it can handle only one request at a time.

Leave a comment