initial commit

This commit is contained in:
2023-01-28 15:55:33 +01:00
parent dcbf34269d
commit a1e482f23a
11 changed files with 286 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