Just the scripts for now!
The Djando app is in design/
python3 -m venv ./.foundry
source .foundry/bin/activatedeactivatesource .foundry/bin/activate && python manage.py runserverpython -m pip install Djangodjango-admin startproject sitename
python manage.py startapp appnamepython -m pip freeze > requirements.txtsource .foundry/bin/activate
python manage.py createsuperuserpython manage.py makemigrations
python manage.py migrate
python manage.py flush --no-inputpython manage.py shell