0
I think the problem is this line in your Procfile when you run
gunicorn poem_maker.wsgi:application
try web: gunicorn poem_maker.wsgi
instead.
0
This error indicates that you have missing gunicorn, install it
pip install gunicorn
- [Django]-Pass data from one view to another django
- [Django]-POSTing foreign keys to Django Rest Framework, using Postman
Source:stackexchange.com