- Follow the guide here on how to clone or fork a repo
- Follow the guide here on how to create virtualenv
$ virtualenv --python=python3.10 myvenv
$ source myvenv/bin/activate
$ pip freeze > requirements.txt
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py runserver