I'm trying to launch my Django application with Heroku but when I execute the command "Heroku local" I get the following error .... Anyone can explain why? Before writing this post I tried to make various changes and read up on the official website but it didn't work.
To run heroku in local I ran
Heroku local
in my main directory, with gunicorn everything was fine but apparently with heroku I'm doing something wrong.
I've also created a Procfile with the following line inside of it:
web: gunicorn social_site.wsgi
where social_site is the name of the app.