linkerd2/web
Risha Mars 55de336325
Add a couple more eslint rules (#50)
* Add a couple more eslint rules

* Add keyword-spacing
2017-12-15 12:24:42 -08:00
..
app Add a couple more eslint rules (#50) 2017-12-15 12:24:42 -08:00
srv Remove namespace property from the Conduit web app (#10) 2017-12-08 15:38:04 -08:00
templates Remove namespace property from the Conduit web app (#10) 2017-12-08 15:38:04 -08: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 Add javascript tests (#45) 2017-12-14 15:12:26 -08:00
main.go Remove namespace property from the Conduit web app (#10) 2017-12-08 15:38:04 -08:00

README.md

Conduit Dashboard

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 ./...

JS unit tests

To run:

cd web/app
yarn karma start