Simple Flask dashboard for monitoring a Monero node via RPC.
- Install Python dependencies:
pip install -r requirements.txt
- Update
config.py
with the URL of yourmonerod
RPC server. - Run the application:
python app.py
- Open
http://localhost:5000
in your browser.
You can run the dashboard in a container.
Build the image:
docker build -t dashero .
Run the container (mounting your config.py
for configuration):
docker run --rm -p 5000:5000 \
-v $(pwd)/config.py:/app/config.py \
dashero
Then open http://localhost:5000
in your browser.