Heroku with waitress and django

I am trying to use waitress because I am on windows. I cant seem to quite get the Procfile right.

This is everything in that file right now.

import waitress 
from waitress import serve

web: waitress-serve --port=$PORT QRCodes.wsgi:application

There is a yellow warning under 'port' and a red error under '$PORT'. I have looked everywhere and cannot find a solution to this. Please help!

Back to Top