I am trying to run my website via a XAMPP Apache server over my LAN at home, but after storing my site in XAMPP's HTdocs file, edited the httpd.conf file to include a .py handler and other configuration as directed in this question: Running Python Scripts with XAMPP. Following this I included routes to both python3 and python 2.7 at the tops of my run.py and _init__.py file
#!C:User/path/to/python3.exe
#!C:User/path/to/python2.7.exe
I also have it so that my port configurations in the httpd.conf file are listening at the IP address on port 80 as well and have the server name as the IP address and the port name.
After following all of these steps, when I access the IP address in a separate home computer, python command line opens on the laptop operating as my server and runs my program on localhost:5000 as usual. I need this program to run across my LAN network (just a basic flask website). How can I do this/am I missing a step? Do I need to add the python routes to the top of every one of my files???