Just the scripts for now!
The Djando app is in design/
python3 -m venv ./.foundry
source .foundry/bin/activate
deactivate
source .foundry/bin/activate && python manage.py runserver
python -m pip install Django
django-admin startproject sitename
python manage.py startapp appname
python -m pip freeze > requirements.txt
source .foundry/bin/activate
python manage.py createsuperuser
python manage.py makemigrations
python manage.py migrate
python manage.py flush --no-input
python manage.py shell