Run the Dev Server with runserver
Launch localhost:8000 and see the rocket page.
Start the Dev Server
Django includes a lightweight development server. The runserver command launches your app locally so you can see it in a browser. 🚀
python manage.py runserverVisit localhost:8000
By default the server listens on localhost:8000. Open that address in your browser to reach your running project.
All lessons in this course
- Virtual Environments with venv
- pip install django and Pinning Versions
- django-admin startproject Explained
- Run the Dev Server with runserver