How can I add a dyno for my deployed app in Heroku?
I deployed the app for Heroku successfully but when I check status with 'heroku ps' command I receive information that I have no dynos on the app. The app is created in Django.
I tried to add a dyno for my app by browser on my account but there is not any option to do that.
Is there a possibility that Procfile causes that issue? My Procfile (file without extension) command:
web: gunicorn mywebsite.wsgi --log-file -
I tried a lot of solutions from the internet and stackoverflow but my problem is still not solved.
I would be grateful for any help.