How To Run Server: Runserver - This Command Is Used To Run Built-In Server of Django
How To Run Server: Runserver - This Command Is Used To Run Built-In Server of Django
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
Note – Sometime when you make changes in your project you may need to restart the server.