From fedc6c6e9057089a5f8ce79114ed5ffbb1755d69 Mon Sep 17 00:00:00 2001 From: Sebastian Luna-Valero Date: Wed, 21 Aug 2024 15:27:45 +0200 Subject: [PATCH] update README with homer --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2b0995a..fd446c8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This code relies on docker-compose to run 3 containers: - [traefik](https://traefik.io/traefik/) to provide HTTP proxy and cert management -- [dashy](https://dashy.to/) for generating the dashboard +- [homer](https://homer-demo.netlify.app/) for generating the dashboard - some python code to generate the list of endpoints The existing docker-compose file assumes you will run the code on a publicly @@ -55,18 +55,18 @@ conda activate horizon-aggregator Test whether the query script works: ```shell -cd /path/to/working/directory/fedcloud-dashboard/dashboard/ -python dashy_endpoints.py > conf.yml +cd /path/to/working/directory/fedcloud-dashboard/ +python dashboard/update_config.py > assets/config.yml ``` Use the generated `conf.yml` with dashy: ```shell -cd /path/to/working/directory/fedcloud-dashboard/dashboard/ +cd /path/to/working/directory/fedcloud-dashboard/ docker run \ - -p 8080:80 \ - -v $PWD/conf.yml:/app/public/conf.yml \ - lissy93/dashy:latest + -p 8080:8080 \ + -v $PWD/assets:/www/assets/ \ + b4bz/homer:v24.05.1 ``` And point your browser to `http://localhost:8080` to see your dashboard running