Check out the blog post.
- Fork/Clone
- Create and activate a virtual environment
- Install dependencies -
pip install -r requirements - Make migrations -
python manage.py makemigrations cookbook - Build the database -
python manage.py migrate - Create a superuser -
python manage.py createsuperuser - Add seed data -
python manage.py loaddata cookbook/fixtures/cookbook.json - Run the development server -
python manage.py runserver