mdsalmon159's picture
Create Procfile
28f80a4 verified
raw
history blame contribute delete
215 Bytes
# 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