* Serving Flask app 'main' (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: on
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
* Restarting with stat
* Debugger is active!
* Debugger PIN: 320-939-892
My Flask Website won't load
Whenever I run my code, it shows this:
And when I open the website, it shows this:
How do I fix?
Try app.run(port=8080, host=‘0.0.0.0’, debug=True)
@VulcanWM
Thanks, it worked!
np! @CodingEssence
@CodingEssence On Replit you always need to define the host.
yeah @CosmicBear