When I deploy my Django app with my bot.py to Heroku there is a conflict because Django does not let the bot receive the calls.
Procfile
web: python bot.py
web: gunicorn tlgrmbot.wsgi
the logs show that it keeps looking for the https://herokuappname.com/token not found, because I don´t have urls, and if I only leave the python bot.py in the procfile the bot responds but it does not finds the Database.
Does someone knows how to resolve this?