5 lines
89 B
Bash
5 lines
89 B
Bash
#!/usr/bin/env bash
|
|
|
|
cd /app || exit
|
|
gunicorn --workers=2 --bind=0.0.0.0:8000 bridge:app
|