Asynchonous web monitor for PHD2 Guiding.
Listens to localhost
on port 4400
which is the default port for PHD2. Will eventually have a config file to set this.
Python 3.6+
Running from the command line
python3 -m venv env
pip install -r requirements.txt
cd app
uvicorn main:app
Running with Docker
docker build -t phdwebmonitor .
docker run --name phdwebmonitorcontainer -d -p 80:8000 phdweb
Navigate to localhost:8000 to view the webpage.