Flask: Difference between revisions

32 bytes added ,  5 years ago
no edit summary
No edit summary
No edit summary
Line 18:
http://127.0.0.1:5000/
 
Enable Debugging & access URL over network:
app.run(debug = True, host= '0.0.0.0')
 
Access URL over network with custom port:
app.run(host = '0.0.0.0',port=5005)