5 lines
102 B
Bash
Executable File
5 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
# run.sh - run the backend server
|
|
cd `dirname $0`
|
|
sudo gunicorn app:app -b 0.0.0.0:5000 &
|