Initial commit.

This commit is contained in:
Jim Driessen
2017-01-20 17:45:58 +01:00
commit 47e7b5b59c
85 changed files with 12276 additions and 0 deletions

15
sourceme Normal file
View File

@ -0,0 +1,15 @@
#!/bin/bash
pathname=$_
if [[ "$pathname" = "$0" ]]; then
echo "Remember: you need to run me as 'source sourceme', not execute it!"
return
fi
if [ -d venv ]; then
source venv/bin/activate
else
pyvenv venv
source venv/bin/activate
fi