Can i tune my skin on Zeppelin?

Can I customize the skin on Zeppelin? In other words, replace the Zeppelin logo with something else?

+8
apache-zeppelin
source share
3 answers

Yes, it is very possible.

As you know, Apache Zeppelin (incubation) is an open source project, so you just need to:

This is basically it.

There are at least 2 companies that are known to successfully complete the following steps.

Commercial Products Based on Zeppelin

+6
source share

As mentioned in the bzz answer: you can customize the zeppelin user interface. Here are some more details:

Check out the zeppelin source code (e.g. from GitHub https://github.com/apache/zeppelin ). Then:

  • To set up the first page (β€œWelcome to Zeppelin” on it): edit zeppelin-web/src/app/home/home.html

  • To customize the navigation bar (containing a small zeppelin logo and the word zeppelin): edit zeppelin-web/src/components/navbar/navbar.html

  • To customize the color scheme zeppelin-web/src/app/home/home.css For the color navbar you need to change the entries for navbar-inverse, but many other elements (for example, the names of the interpreters) use the same color.

After that, you need to rebuild zeppelin mvn clean install -DskipTests (note that you may need to restart your browser).

+3
source share

See "How to install a laptop as a home page" in the documentation. In the notebook, you can do whatever you like, including html.

0
source share

All Articles