Fork the repository and then clone your copy to your machine.
Traverse to the projects root directory and create a virtual environment.
python3 -m venv (folder name)
source (folder name)/bin/activate
python -m venv (folder name)
(folder name)/Scripts/activate.bat
deactivate
With the virtual environment active use the following command to install the projects requirements.
pip install -r requirements.txt
Now to test that the project is setup correctly we will start djangos built in webserver and attempt to request the landing page using an internet browser.
Start the server using the manage.py file.
python manage.py runserver 8080
Launch your prefered browser and send an http request to the port specified in the previous command.
localhost:8080
You should now see the projects front page.