1
0
Fork 0
traefik/webui
2025-09-01 16:30:09 +02:00
..
public Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
src Improve visualization for StatusRewrites option of errors middleware 2025-06-03 10:02:04 +02:00
static Restore empty webui/static to use traefik as library 2025-09-01 16:30:09 +02:00
test Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
.editorconfig Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
.env.sample Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
.gitignore Restore empty webui/static to use traefik as library 2025-09-01 16:30:09 +02:00
.nvmrc Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
.prettierrc.json Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
.yarnrc.yml Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
buildx.Dockerfile Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
embed.go Remove unused boot files from webui 2024-09-27 15:22:04 +02:00
eslint.config.mjs Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
index.dev.html Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
index.html Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
package.json Update Traefik Proxy dashboard UI development deps 2025-08-01 11:42:05 +02:00
readme.md Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
tsconfig.json Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
tsconfig.node.json Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
vite.config.ts Migrate Traefik Proxy dashboard UI to React 2025-05-28 11:26:04 +02:00
yarn.lock Update Traefik Proxy dashboard UI development deps 2025-08-01 11:42:05 +02:00

Traefik Web UI

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

Interface

Traefik Web UI provide 2 types of information:

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

How to build (for backend developer)

Use the Makefile :

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

How to build (only for frontend developer)

  • prerequisite: Node 22 Yarn

  • Go to the webui/ directory

  • As we use Yarn v4, you will need to enable corepack before installing dependencies:

    • corepack enable
  • To install dependencies, execute the following commands:

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

    • yarn build
  • Static contents are built in the webui/static/ directory

Do not manually change the files in the webui/static/ directory

The build allows to:

  • optimize all JavaScript
  • optimize all CSS
  • add vendor prefixes to CSS (cross-browser support)
  • add a hash in the file names to prevent browser cache problems
  • optimize all images at build time
  • bundle JavaScript in one file

How to edit (only for frontend developer)

Do not manually change the files in the webui/static/ directory

  • Go to the webui/ directory
  • Edit files in webui/src/
  • Create and populate the .env file using the values inside .env.sample file.
  • Run in development mode :
    • yarn dev
  • The application will be available at http://localhost:3000/. On development mode, the application will run with mocked data served by Mock Service Worker.

How to run tests

  • Execute the following commands:
    • yarn test
    • or yarn test:watch if you want them in watch mode

Libraries