Check out the post.
-
Fork/Clone
-
Create and activate a virtual environment:
$ python3 -m venv venv && source venv/bin/activate
-
Install the requirements:
(venv)$ pip install -r requirements.txt
-
Apply the migrations:
(venv)$ python manage.py migrate
-
Populate the database:
(venv)$ python manage.py populate_db
-
Run the server:
(venv)$ python manage.py runserver
-
Navigate to http://localhost:8000/ in your browser.
The project comes with django-silk preinstalled, which you can use for checking the performance of the SQL queries: http://localhost:8000/silk/.