infra: boostrap script

pull/20/head
Marc Cataford 4 years ago
parent c4f3150910
commit 3ff7582a24

3
.gitignore vendored

@ -12,4 +12,5 @@ dbm.*
.DS_Store
.vscode/
.vscode/settings.json
lib
lib
*.venv

@ -0,0 +1,10 @@
#!/bin/bash
pyenv install --skip-existing
VENV="${PWD##*/}.venv"
VENV=${VENV#-}
python -m venv $VENV
. $VENV/bin/activate
python -m pip install -U pip wheel
python -m pip install -r requirements.txt
Loading…
Cancel
Save