Create and activate virtual environment:
cd .. && virtualenv venv && .\venv\Scripts\activate && cd mywebsite
To start the development server:
cd mywebsite
python manage.py runserver
When models are modified, run the following commands to migrate and apply all migrations:
python manage.py makemigrations
python manage.py migrate
To create a new superuser for the admin interface:
python manage.py createsuperuser