4 lines
86 B
Bash
Executable File
4 lines
86 B
Bash
Executable File
#!/bin/bash
|
|
# run.sh - run the backend server
|
|
sudo gunicorn app:app -b 0.0.0.0:5000 &
|