How can you use Django's runserver command?
Question :
How can you use Django's runserver command?
The runserver command is used to run the development server. You can start the development server with the following command:
python manage.py runserver
By default, it runs on http://127.0.0.1:8000/. You can specify a different port using:
python manage.py runserver <port_number>