Configure my local flask server to be available to other devices under same wifi network Configure my local flask server to be available to other devices under same wifi network flask flask

Configure my local flask server to be available to other devices under same wifi network


The Flask dev server should not be used in production as it is not designed to be efficient and secure. Flask Deployment

To make the flask dev server visible on LAN/WLAN add the host parameter to run on machine's IP Address

app.run(host='0.0.0.0', port=5000)

To Access the web server use private ip address(LAN/WLAN) of the machine running the flask server 192.168.1.23:5000