Raphael Maenle
dbb6d170da
- starts uwsgi and flask in virtual environment instead of docker - sets oauth2 https error to false (OAUTHLIB_INSECURE_TRANSPORT=1) - this setup works, but - moving it into docker - removing the venv - and allowing https connection internally? would be better
5 lines
99 B
Bash
Executable File
5 lines
99 B
Bash
Executable File
#!/bin/sh
|
|
cd /home/calendarwatch
|
|
uwsgi --http-socket :8084 --wsgi-file server.py
|
|
# python3 app.py
|