0Pricing
Django Academy · Lesson

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 runserver

Visit 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

  1. Virtual Environments with venv
  2. pip install django and Pinning Versions
  3. django-admin startproject Explained
  4. Run the Dev Server with runserver
← Back to Django Academy