Custom DSS landing page?
Has anyone done a custom landing page (login page) for DSS free edition? I'm running on GCP with a custom domain (all this is working). Wondering if I can rebrand the landing page. Any ideas?
Answers
-
JordanB Dataiker, Dataiku DSS Core Designer, Dataiku DSS Adv Designer, Registered Posts: 296 Dataiker
Hi @TeaHacker
,Unfortunately, this is not possible on the DSS free edition.
Please let me know if you have any further questions.
Thanks!
Jordan
-
Hi @JordanB
,We are using paid DSS, wonder what kind of customization on the landing page does DSS offer?
Thanks
Renee
-
JordanB Dataiker, Dataiku DSS Core Designer, Dataiku DSS Adv Designer, Registered Posts: 296 Dataiker
Customizing the login page is not a built-in feature of DSS (free or paid), however, there is an unsupported workaround that involves editing the templates.js file within the INSTALL_DIR (ex: dataiku-dss-11.4.1-osx/frontend/templates.js). Note, this is not officially supported and not recommended, also, the changes do not persist upon dss version upgrades. For the login page, you could edit the html at /templates/login.html.
There is also "additionalHelpMenuItems" field in general-settings.json that can be populated with something like:"additionalHelpMenuItems": [{"label": "Get help from my team", "url": "http://www.google.com"}, {"label": "My other custom entry...", "url": "http://www.google.com"}],
It is intended to create new entries in the help menu, add some entries below "Demo projects" and you can remove the default Dataiku things is you want. -
Got it. Thank you @JordanB
for the info!