Flask: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 18: Line 18:
http://127.0.0.1:5000/
http://127.0.0.1:5000/


Enable Debugging & access URL over network:
Enable Debugging:
app.run(debug = True, host= '0.0.0.0')
app.debug = True

Access URL over network with custom port:
app.run(host = '0.0.0.0',port=5005)