diff --git a/reportingSystem/superset/assets/superset_config.py b/reportingSystem/superset/assets/superset_config.py index 25674db..dd15b10 100644 --- a/reportingSystem/superset/assets/superset_config.py +++ b/reportingSystem/superset/assets/superset_config.py @@ -18,4 +18,8 @@ LOGO_TARGET_PATH = '/' -LOGO_TOOLTIP = "Avni Superset" \ No newline at end of file +LOGO_TOOLTIP = "Go Home" + +APP_NAME = "Avni Superset" + +FAVICONS = [{"href": "/static/assets/images/avni-favicon.ico"}] \ No newline at end of file diff --git a/reportingSystem/superset_db_sqllite_to_postgres.md b/reportingSystem/superset_db_sqllite_to_postgres.md index 714ca94..9275a07 100644 --- a/reportingSystem/superset_db_sqllite_to_postgres.md +++ b/reportingSystem/superset_db_sqllite_to_postgres.md @@ -92,6 +92,8 @@ vi superset_config.py cd /home/ubuntu/supersetdata wget https://avniproject.org/static/avni-logo-color-b42a730b01c55efe37722027d9cddd95.png mv avni-logo-color-b42a730b01c55efe37722027d9cddd95.png avni.png +wget https://app.avniproject.org/favicon.ico +mv favicon.ico avni-favicon.ico ``` 3. run docker for 4.0.1 @@ -102,6 +104,7 @@ docker run -d -p 8088:8088 \ -e SUPERSET_CONFIG_PATH=/app/superset_config.py \ -v /home/ubuntu/supersetdata/superset_config.py:/app/superset_config.py \ -v /home/ubuntu/supersetdata/avni.png:/app/superset/static/assets/images/avni.png \ + -v /home/ubuntu/supersetdata/avni-favicon.ico:/app/superset/static/assets/images/avni-favicon.ico \ apache/superset:4.0.1 docker logs -f superset_4.0.1 ```