Add build make target
This commit is contained in:
parent
f280c0701f
commit
9c79f08c96
2 changed files with 10 additions and 1 deletions
9
Makefile
9
Makefile
|
@ -14,3 +14,12 @@ test:
|
||||||
.PHONY: watch
|
.PHONY: watch
|
||||||
watch:
|
watch:
|
||||||
modd
|
modd
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
rm -rf server/craban server/web/static/*
|
||||||
|
|
||||||
|
.PHONY: build
|
||||||
|
build: clean
|
||||||
|
cd webapp && npm run build
|
||||||
|
cd server && go build -v -race ./cmd/craban
|
||||||
|
|
|
@ -18,7 +18,7 @@ Default configuration can be found in the
|
||||||
- [X] Split server and webapp in different folders
|
- [X] Split server and webapp in different folders
|
||||||
- [X] Add modd for easy development forkflow
|
- [X] Add modd for easy development forkflow
|
||||||
- [ ] Add webapp make targets
|
- [ ] Add webapp make targets
|
||||||
- [ ] Add bundle and install make targets
|
- [X] Add build make target
|
||||||
- [X] Create basic webapp structure and development workflow
|
- [X] Create basic webapp structure and development workflow
|
||||||
- [X] Think of a better name
|
- [X] Think of a better name
|
||||||
- [ ] Add email config and communications
|
- [ ] Add email config and communications
|
||||||
|
|
Loading…
Reference in a new issue