Code examples for the Django Brew Podcast
- Create a virtual environment and activate it.
python -m venv venv
. venv/bin/activate
- Install requirements
python -m pip install -r requirements.txt
- Migrate
python manage.py migrate
- Run server
python manage.py runserver 0:8000
Examples for each episode are organized into separate Django apps.
You can find a list of all episode example links on the homepage, and from there you can navigate to each episode's homepage to access the examples!