init learning cats

This commit is contained in:
Andreas Stephanides
2017-08-04 07:49:39 +02:00
commit 941cbc3d45
14 changed files with 847 additions and 0 deletions

13
install.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
if test ! -d ".env"; then
echo "Erzeuge virtuelle Umgebung ...."
virtualenv .env
fi
echo "Aktiviere virtuelle Python Umgebung ..."
. .env/bin/activate
echo "Installiere requirements ..."
pip install --upgrade pip
pip install -r requirements.txt
if test ! -e "config.cfg" -a -e "config.cfg.sample"; then
cp config.cfg.sample config.cfg
fi