5 lines
93 B
Bash
5 lines
93 B
Bash
#!/bin/bash
|
|
# run.sh - run the backend server
|
|
sudo gunicorn app:app -b 0.0.0.0:5000 &
|
|
disown
|