Document working in here

This commit is contained in:
Reid 'arrdem' McKenzie 2021-10-10 21:42:38 -06:00
commit 2ab0339e49
2 changed files with 65 additions and 0 deletions

13
activate.sh Normal file
View file

@ -0,0 +1,13 @@
#!/bin/bash
mkvirtualenv source
workon source
pip install -r tools/python/requirements.txt
for d in $(find . -type d -path "*/src/python"); do
d="$(realpath "${d}")"
echo "Adding subproject ${d}"
add2virtualenv "${d}"
done