Download zip file or
Clone with git + remove git folder
git clone https://github.com/andyjud/django-starter.git . && rm -rf .git
python3 -m venv venv
source venv/bin/activate
pip install virtualenv
virtualenv venv
venv\Scripts\activate.bat
pip install --upgrade pip
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
python manage.py shell
from django.core.management.utils import get_random_secret_key
print(get_random_secret_key())
exit()