traefik/webui/readme.md

66 lines
1.7 KiB
Markdown
Raw Normal View History

# Træfik Web UI
2015-10-07 11:54:00 +00:00
Access to Træfik Web UI, ex: http://localhost:8080
2015-10-07 11:54:00 +00:00
## Interface
Træfik Web UI provide 2 types of informations:
2015-10-07 11:54:00 +00:00
- Providers with their backends and frontends information.
- Health of the web server.
## How to build (for backends developer)
Use the make file :
```shell
make build # Generate Docker image
make generate-webui # Generate static contents in `traefik/static/` folder.
```
2015-10-07 11:54:00 +00:00
2015-12-22 22:33:12 +00:00
## How to build (only for frontends developer)
2015-10-07 11:54:00 +00:00
2018-04-27 11:12:04 +00:00
- prerequisite: [Node 6+](https://nodejs.org) [yarn](https://yarnpkg.com/)
2015-10-07 11:54:00 +00:00
Note: In case of conflict with the Apache Hadoop Yarn Command Line Interface, use the `yarnpkg`
alias.
2015-12-22 22:33:12 +00:00
- Go to the directory `webui`
2015-12-22 22:33:12 +00:00
- To install dependencies, execute the following commands:
- `yarn install`
2015-12-22 22:33:12 +00:00
- Build static Web UI, execute the following command:
- `yarn run build`
2015-12-22 22:33:12 +00:00
- 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
2016-07-23 17:59:54 +00:00
- bundle JavaScript in one file
2015-12-22 22:33:12 +00:00
## How to edit (only for frontends 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 :
2018-04-27 11:12:04 +00:00
- `yarn start`
2015-10-07 11:54:00 +00:00
## Libraries
- [Node](https://nodejs.org)
- [Yarn](https://yarnpkg.com/)
2016-07-23 17:59:54 +00:00
- [Webpack](https://github.com/webpack/webpack)
2018-04-27 11:12:04 +00:00
- [Angular](https://angular.io)
- [Bulma](https://bulma.io)
- [D3](https://d3js.org)
2018-04-27 11:12:04 +00:00
- [D3 - Documentation](https://github.com/mbostock/d3/wiki)