This is the user-interface for the spring-boot-admin-server. There are neither configuration nor customization options. If you want to change something, copy this project and build your own static resources and ship 'em with your spring-boot-admin-server.
The jar can be build with Maven with the maven-exec-plugin, node.js and npm must be installed on your machine and be on your $PATH. If you dont want to use the maven exec run the following commands:
npm install
gulp
npm install
gulp watch
Install gulp globally - http://omcfarlane.co.uk/install-gulp-js-windows/
Update the maven pom to run gulp directly
<configuration>
<executable>gulp</executable>
<arguments>
<argument>--skipTests=${skipTests}</argument>
</arguments>
</configuration>
Update the packages json
"postinstall": "node node_modules/protractor/bin/webdriver-manager update",
"pretest": "node node_modules/protractor/bin/webdriver-manager start &",
"test": "node node_modules/gulp/bin/gulp.js"