If your PC and your coworkers PCs belong to the same LAN, this is pretty easy to achieve. Just run your app through:
runApp(host = "0.0.0.0", port = 5050)
The value set through the host
argument says to accept any connection (not just from localhost). The port
argument can assume any value that you want (just assure to avoid to select ports used by other services like ssh
or http
). Then, take note of your local IP (if you are under linux, you can see it through ifconfig
). Say your IP is 192.168.1.70
. Your colleagues can use your app by inserting in the address bar of their browser 192.168.1.70:5050
, i.e. your IP followed by :
and the port number you selected.
If you want access from outside your LAN, you can direct your router to your PC when someone connect to your public IP through the 5050 port.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…