at the moment I'm trying to figure out, how to make a flask app accessible from different networks at the same time. For example, my pc is inside network a via wifi and also in network b through an ethernet cable. The flask app is showing when starting:
FLASK_APP = app.py
FLASK_ENV = development
FLASK_DEBUG = 1
* Serving Flask app 'app.py' (lazy loading)
* Environment: development
* Debug mode: on
* Restarting with stat
* Debugger is active!
* Debugger PIN: 103-934-430
* Running on all addresses.
WARNING: This is a development server. Do not use it in a production deployment.
* Running on http://10.220.4.151:5000/ (Press CTRL+C to quit)
10.220.4.151 is the ip address of my WLAN interface. So my flask server is accessible from all devices in my wifi network but is not accessible from all my devices in my lan-network.
Is it possible to make my flask app accessible from both?