initial import

This commit is contained in:
2023-08-22 18:25:56 +02:00
commit 188c81b572
8 changed files with 195 additions and 0 deletions

8
app.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
BASE=$(dirname $0)
cd $BASE
git pull
source env/bin/activate
pip3 install -r requirements.txt
gunicorn -D --bind 0.0.0.0:80 --pid /var/run/webapp.pid wsgi:app