eg I have a command like this gunicorn --bind 0.0.0.0:8000 --workers = 3 --threads = 3 manage: app then manage: app fetched from manage.py file
app = create_app ()
does the if __name __ == '__ main__' function look like this too
if __name__ == '__main__':
flask_thread (func = run)
client.run (os.getenv ('TOKEN'))
executed when running Gunicorn?