Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 513 Bytes

File metadata and controls

22 lines (15 loc) · 513 Bytes

Low-Level Cache API in Django

How to use the low-level cache API in Django.

Want to learn how to build this?

Check out the post.

Want to use this project?

  1. Fork/Clone

  2. Run:

    $ python3 -m venv env && source env/bin/activate
    (env)$ pip install -r requirements.txt
    (env)$ python manage.py makemigrations
    (env)$ python manage.py migrate
    (env)$ python manage.py seed_db
    (env)$ python manage.py runserver