Create Virtual Environment & Activate.
pip install virtualenv
virtualenv venv
venv/bin/activate (venv\scripts\activate on Windows)
Make Directory for django_project in venv/
mkdir django_project
Unzip files to venv/django_project & Install the requirements.
pip install -r requirements.txt
Navigate to venv/django_project & make migrations
python manage.py migrate
Run the application.
python manage.py runserver
Navigate to localhost:8000.
https://github.com/CoreyMSchafer
https://www.youtube.com/watch?v=UmljXZIypDc&list=PL-osiE80TeTtoQCKZ03TU5fNfx2UY6U4p
https://raturi.in/blog/integrate-disqus-comments-with-django/