The Flask docs describe an externally visible server that allows users on your network to access your running app. The docs seem to assume a level of understanding that I don't possess and I can't figure out how to make it work.
I've adjusted my app.run()
method, passing it the host='0.0.0.0'
argument, as instructed in the docs.
How does a user in my network access my app? What address do they visit? Do other settings need to be configured?