зеркало из https://github.com/microsoft/Reactors.git
744 B
744 B
Django demos
Demo files being used during a broadcast on MicrosoftDeveloper Twitch.
Installation steps
- Install Python (if needed)
- Clone the Reactors repository
- Change directory into
online/django101
- 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
- Run the site
# Windows
python manage.py runserver
# Linux / macOS
python3 manage.py runserver