traefik/webui
2019-10-09 17:34:05 +02:00
..
dev/scripts Add a new dashboard page. 2019-08-26 18:15:41 +02:00
src Add a service sticky details vue component 2019-10-09 17:34:05 +02:00
src-pwa Add a new dashboard page. 2019-08-26 18:15:41 +02:00
.dockerignore chore(webui): ignore target/dependencies in docker copy 2019-02-01 00:20:04 +01:00
.editorconfig Add a new dashboard page. 2019-08-26 18:15:41 +02:00
.eslintignore Add a new dashboard page. 2019-08-26 18:15:41 +02:00
.eslintrc.js Add a new dashboard page. 2019-08-26 18:15:41 +02:00
.gitignore Add a new dashboard page. 2019-08-26 18:15:41 +02:00
.postcssrc.js Add a new dashboard page. 2019-08-26 18:15:41 +02:00
.stylintrc Add a new dashboard page. 2019-08-26 18:15:41 +02:00
babel.config.js Add a new dashboard page. 2019-08-26 18:15:41 +02:00
Dockerfile Add a new dashboard page. 2019-08-26 18:15:41 +02:00
package-lock.json Add more pages in the WebUI 2019-09-10 14:40:05 +02:00
package.json Add more pages in the WebUI 2019-09-10 14:40:05 +02:00
quasar.conf.js Web UI graph names. 2019-09-16 15:18:06 +02:00
readme.md Add a new dashboard page. 2019-08-26 18:15:41 +02:00

Traefik Web UI

Access to Traefik Web UI, ex: http://localhost:8080

Interface

Traefik Web UI provide 2 types of informations:

  • Providers with their backends and frontends information.
  • Health of the web server.

How to build (for backend developer)

Use the make file :

make build           # Generate Docker image
make generate-webui  # Generate static contents in `traefik/static/` folder.

How to build (only for frontend developer)

  • prerequisite: Node 6+ Npm

  • Go to the directory webui

  • To install dependencies, execute the following commands:

    • npm install
  • Build static Web UI, execute the following command:

    • npm run build
  • Static contents are build in the directory static

Don't change manually the files in the directory static

  • The build allow to:
    • optimize all JavaScript
    • optimize all CSS
    • add vendor prefixes to CSS (cross-bowser support)
    • add a hash in the file names to prevent browser cache problems
    • all images will be optimized at build
    • bundle JavaScript in one file

How to edit (only for frontend developer)

Don't change manually the files in the directory static

  • Go to the directory webui
  • Edit files in webui/src
  • Run in development mode :
    • npm run dev

Libraries