0% found this document useful (0 votes)
35 views2 pages

How To Run Server: Runserver - This Command Is Used To Run Built-In Server of Django

The document provides instructions for running and stopping the built-in Django development server. It notes that the runserver command starts the server from the project folder at localhost:8000, and ctrl + c can stop the server. Changes may sometimes require a server restart.

Uploaded by

Venu D
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views2 pages

How To Run Server: Runserver - This Command Is Used To Run Built-In Server of Django

The document provides instructions for running and stopping the built-in Django development server. It notes that the runserver command starts the server from the project folder at localhost:8000, and ctrl + c can stop the server. Changes may sometimes require a server restart.

Uploaded by

Venu D
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 2

How to run server

Django provides built-in server which we can use to run our project.
runserver – This command is used to run built-in server of Django.
Steps:-
• Go to Project Folder
• Then run command python manage.py runserver
• Server Started
• Visit http://127.0.0.1:8000 or http://localhost:8000

• You can specify Port number python manage.py runserver 5555


• Visit http://127.0.0.1:5555 or http://localhost:5555
How to Stop server
ctrl + c is used to stop Server

Note – Sometime when you make changes in your project you may need to restart the server.

You might also like