Hi everyone, I’m running a Plotly Dash app on my Windows laptop and I’d like to access it remotely from another device (e.g. a second laptop connected via my phone’s hotspot). I’d prefer not to use Docker, Heroku, Dash Enterprise or any cloud service—just straight port forwarding from my home network. Do you have any advice?
Hey @Angelo_Massafra welcome.
The question is whether your server (the machine where you are running the dash app) and the other device (you mention a Notebook) are in the same network or not.
If in the same network you can just run the the app on host=”0.0.0.0”
, port=8050
This device would be your server.
From your other device connected to the same network you can access the app using your the local IP address of your server, for example: 192.168.1.22:8050
being 192.168.1.22
the local IP address of your server.
1 Like