3 lines
108 B
Bash
3 lines
108 B
Bash
#!/bin/sh
|
|
echo "Starte Gunicorn Webserver auf Port 8080..."
|
|
gunicorn --bind 0.0.0.0:8080 --workers 2 app:app |