This commit is contained in:
beertap
2022-07-17 17:40:58 +02:00
parent 59dda5142b
commit ca0b60e046

View File

@@ -1,18 +1,19 @@
#!/bin/bash #!/bin/bash
URL_APP="http://127.0.0.1:5000" URL_APP="http://127.0.0.1:5000"
INST_PATH="/home/beertap/git/flask-beertap"
usage(){ usage(){
cat << EOF cat << EOF
Usage: $0 [-h] Usage: $0 [-h]
Schäbig isch gäbig. Ha! Undokumentiert. Schäbig isch gäbig!
EOF EOF
} }
d_schlange_wuerge(){ d_schlange_wuerge(){
pipenv update cd $INST_PATH
pipenv run python main.py & pipenv run python main.py &
} }