Reactors/online-event-resources/web-development/django101/README.md

744 B

Django demos

Demo files being used during a broadcast on MicrosoftDeveloper Twitch.

Installation steps

  1. Install Python (if needed)
  2. Clone the Reactors repository
  3. Change directory into online/django101
  4. Create a virtual environment and install requirements
# Windows
python -m venv venv
.\venv\scripts\activate
pip install -r requirements.txt

# Linux / macOS
python3 -m venv venv
. ./venv/bin/activate
pip3 install -r requirements.txt
  1. Run the site
# Windows
python manage.py runserver

# Linux / macOS
python3 manage.py runserver