Compare commits

..

1 Commits

Author SHA1 Message Date
208e3a7b49 code cleanup and comments 2020-07-10 10:11:31 +02:00
5 changed files with 13 additions and 14 deletions

BIN
app.db Normal file

Binary file not shown.

View File

@@ -1,5 +1,7 @@
#!/bin/sh #!/bin/sh
cd /home/calendarwatch cd /home/calendarwatch
uwsgi --ini wsgi.ini # uwsgi --http-socket 0.0.0.0:8084 -w wsgi --protocol=https
export FLASK_APP=/home/calendarwatch/server.py
python3 server.py
echo "server has been started" echo "server has been started"

View File

@@ -0,0 +1,10 @@
{
"latestVersion": "1.0",
"latestVersionCode": 1,
"url": "https://longitudecalendar.com/static/res/daria-scan-1.0.apk",
"releaseNotes": [
"- First evolution",
"- Second evolution",
"- Bug fixes"
]
}

Binary file not shown.

View File

@@ -1,13 +0,0 @@
# uwsgi --socket 0.0.0.0:8084 -w wsgi:application --protocol=http
[uwsgi]
module = wsgi:application
protocol = http
master = true
processes = 5
socket = 0.0.0.0:8084
die-on-term = true