Merge pull request #20 from mcataford/python-version-tooling

Python version tooling
operator-time
Ryan Heuser 4 years ago committed by GitHub
commit e22f41c86f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

3
.gitignore vendored

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

@ -91,7 +91,7 @@ The usual installation:
```
git clone https://github.com/quadrismegistus/Komrade.git
cd Komrade
pip install -r requirements.txt
. script/bootstrap
```
Then run the client:
@ -103,4 +103,4 @@ cd client
### As user
Coming soon.
Coming soon.

@ -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