I'm not sure if this is Flask specific, but when I run an app in dev mode (http://localhost:5000), I cannot access it from other machines on the network (with http://[dev-host-ip]:5000). With rails in dev mode, for example, it works fine. I couldn't find any docs regarding the flask dev server configuration. Any idea what should be configured to enable this? thanks.
|
feedback
|
|
Add a parameter to your app.run(). By default it runs on localhost, change it to app.run(host= '0.0.0.0') to run on your machines IP address. Documented on the Flask site under "Externally Visible Server" on the Quickstart page:
| |||
|
feedback
|