Add routing for basic web ui

This commit is contained in:
Deluan 2020-01-19 19:34:54 -05:00
parent 5bc1551b09
commit 3a03284c59
8 changed files with 112 additions and 29 deletions

View file

@ -18,10 +18,17 @@ test: check_go_env
go test ./... -v
# @(cd ./ui && npm test -- --watchAll=false)
.PHONY: testall
testall: check_go_env test
@(cd ./ui && npm test -- --watchAll=false)
.PHONY: build
build: check_go_env
go build
# @(cd ./ui && npm run build)
.PHONY: build
buildall: check_go_env build
@(cd ./ui && npm run build)
.PHONY: setup
setup: Jamstash-master