File size: 215 Bytes
28f80a4
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# create Procfile that forces gunicorn to run app:app
cat > Procfile <<'PROC'
web: gunicorn app:app --bind 0.0.0.0:7860 --workers 1
PROC

# show Procfile contents to confirm
echo "----- Procfile -----"
cat Procfile