An open API service indexing awesome lists of open source software.

https://github.com/realpython/django-redis-cache


https://github.com/realpython/django-redis-cache

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# Caching in Django with Redis

## Want to learn how to build this project?

Check out the [blog post](https://realpython.com/blog/python/caching-in-django-with-redis/).

## Want to use this project?

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