diff --git a/scripts/start_server.sh b/scripts/start_server.sh new file mode 100644 index 0000000..24e572a --- /dev/null +++ b/scripts/start_server.sh @@ -0,0 +1,4 @@ +#!/bin/bash +cd /home/ubuntu/app +pkill -f "python3 app.py" || true +nohup python3 app.py > app.log 2>&1 &