2015-10-07 13:54:00 +02:00
# Træfɪ k Web UI
Access to Træfɪ k Web UI, ex: http://localhost:8080
## Interface
Træfɪ k Web UI provide 2 types of informations:
- Providers with their backends and frontends information.
- Health of the web server.
2016-01-20 22:45:51 +01:00
## 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 13:54:00 +02:00
2015-12-22 23:33:12 +01:00
## How to build (only for frontends developer)
2015-10-07 13:54:00 +02:00
2016-07-23 19:59:54 +02:00
- prerequisite: [Node 4+ and NPM 3+ ](https://nodejs.org )
2015-10-07 13:54:00 +02:00
2015-12-22 23:33:12 +01:00
- Go to the directory `webui`
2015-12-22 01:02:59 +01:00
2015-12-22 23:33:12 +01:00
- To install dependencies, execute the following commands:
- `npm install`
2015-12-22 01:02:59 +01:00
2015-12-22 23:33:12 +01:00
- Build static Web UI, execute the following command:
2016-01-25 22:23:56 +01:00
- `gulp`
2015-12-22 23:33:12 +01: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 19:59:54 +02:00
- bundle JavaScript in one file
2015-12-22 23:33:12 +01: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 :
- `gulp serve`
- Træfɪ k API connections are defined in:
- `webui/src/app/core/health.resource.js`
- `webui/src/app/core/providers.resource.js`
- The pages contents are in the directory `webui/src/app/sections` .
2015-10-07 13:54:00 +02:00
## Libraries
- [Node ](https://nodejs.org )
2016-07-23 19:59:54 +02:00
- [Generator FountainJS ](https://github.com/FountainJS/generator-fountain-webapp )
- [Webpack ](https://github.com/webpack/webpack )
2015-10-07 13:54:00 +02:00
- [AngularJS ](https://docs.angularjs.org/api )
- [UI Router ](https://github.com/angular-ui/ui-router )
- [UI Router - Documentation ](https://github.com/angular-ui/ui-router/wiki )
- [Bootstrap ](http://getbootstrap.com )
- [Angular Bootstrap ](https://angular-ui.github.io/bootstrap )
2015-10-07 22:31:00 +02:00
- [D3 ](http://d3js.org )
- [D3 - Documentation ](https://github.com/mbostock/d3/wiki )
- [NVD3 ](http://nvd3.org )
2016-07-23 19:59:54 +02:00
- [Angular nvD3 ](http://krispo.github.io/angular-nvd3 )