Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 530 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 530 Bytes

Blog Posts

Demo application for the tutorial "Effective end-to-end testing for Django"

Quickstart

Fork this repository, then:

git clone https://github.com/<your user>/blog-posts
cd blog-posts
python -m venv venv
source ./venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver

The application should be running at http://localhost:8000.

Chapters

Checkout the chapters branch for solutions to each section of the tutorial.