0

my website after I have deployed it via GitHub on some service providers does not shows up on the internet and I think there's some problem in the code I have tried different service providers there is no error in their log so its definitely not the service provider and must be the code

here is the clone of repo

Aadit
  • 1
  • 4
  • Try to give the host parameter to app.run() See here https://stackoverflow.com/questions/7023052/configure-flask-dev-server-to-be-visible-across-the-network – george Jun 08 '22 at 09:12
  • thank you for your suggestion but can you elaborate it more specifically like to what I should change the parameter – Aadit Jun 08 '22 at 09:19
  • [UPDATE][george] I tried it to but the error's still intact – Aadit Jun 08 '22 at 09:25
  • Please provide enough code so others can better understand or reproduce the problem. – Community Jun 08 '22 at 11:21

1 Answers1

0

The problem have been resolved the problem was that, that I need to add:

If __name__=="__main__":

app.run()

To run the app

Aadit
  • 1
  • 4