No description, website, or topics provided.
Python HTML
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
cookbook
example
.gitignore
README.md
manage.py
requirements.txt

README.md

Caching in Django with Redis

Want to learn how to build this project?

Check out the blog post.

Want to use this project?

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