linkerd2/web
Oliver Gould a1fbafaae3 update go-deps image 2017-12-05 01:17:38 +00:00
..
app Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
srv Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
templates Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
util/filesonly Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
Dockerfile update go-deps image 2017-12-05 01:17:38 +00:00
README.md Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00
main.go Introducing Conduit, the ultralight service mesh 2017-12-05 00:24:55 +00:00

README.md

Boron Web UI

This is a React app. It uses webpack to bundle assets, and postcss to transform css.

First time setup

brew install yarn
yarn

Development

After pulling master:

If you just want to run the frontend:

cd web/app
yarn webpack
cd ..
go run main.go

For reloading assets:

cd web/app
yarn webpack-dev-server
cd ..
go run main.go -webpack-dev-server http://localhost:8080/

Testing

Golang unit tests

To run unit tests:

go test ./...