Modificar Procfile verse así:
web: bin/web
Ahora crea el bin directorio y cree el archivo bin/web verse así:
#!/bin/bash
python app.py &
python worker.py
Asegúrese de otorgarle a este archivo el permiso de ejecución:
$ chmod +x bin/web