Locked lesson.
About this lesson
A web server allows us to run our own development project in real time. So in this lesson, we'll learn how to run our own web server.
Exercise files
Download this lesson’s related exercise files.
Run the Web Server.docx57.2 KB Run the Web Server - Solution.docx
55.5 KB
Quick reference
Run the Web Server
In this video we'll run the Django web server and view our new website in a web browser.
When to use
You'll use this command any time you want to view your Django project in the web browser.
Instructions
To run the Django web server, use the command:
python manage.py runserver
And then view the website in your web browser at the URL:
http://localhost:8000
Hints & tips
- python manage.py runserver
- http://localhost:8000
Lesson notes are only available for subscribers.