align with updates in preparation for merging with the version for eos0.3.0

This commit is contained in:
Lucy Cifferello
2021-12-30 15:02:08 -07:00
parent a61c79d6b3
commit 30cd1db632
161 changed files with 202 additions and 148 deletions

11
site/_utils/setup.sh Executable file
View File

@@ -0,0 +1,11 @@
#! /bin/bash
if pwd | egrep -q '\s'; then
echo "Working directory name contains one or more spaces."
exit 1
fi
which python3 || { echo "Failed to find python3. Try installing Python for your operative system: https://www.python.org/downloads/" && exit 1; }
which poetry || curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/1.1.3/get-poetry.py | python3 - && source ${HOME}/.poetry/env
poetry install
poetry update