I am trying to run a command while deploying my Django code to Heroku. I want to accept any question it might get in terminal.
I tried to add following to the procfile, but it didn't work.
release: python manage.py collectstatic --yes
release: python manage.py collectstatic -y
What is the correct way to do this?