8 lines
193 B
Bash
Executable File
8 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
cd /home/calendarwatch
|
|
# 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"
|
|
|