Add just build system
This commit is contained in:
26
justfile
Normal file
26
justfile
Normal file
@@ -0,0 +1,26 @@
|
||||
default: build-all
|
||||
|
||||
build-all: build-api build-frontend
|
||||
|
||||
build-api:
|
||||
just --justfile ./did_router/justfile -d did_router build
|
||||
build-frontend:
|
||||
just --justfile ./frontend/justfile -d frontend build
|
||||
|
||||
install: install-api install-frontend
|
||||
install-api:
|
||||
just --justfile ./did_router/justfile -d did_router install
|
||||
install-frontend:
|
||||
just --justfile ./frontend/justfile -d frontend install
|
||||
|
||||
uninstall: uninstall-api uninstall-frontend
|
||||
uninstall-api:
|
||||
just --justfile ./did_router/justfile -d did_router uninstall
|
||||
uninstall-frontend:
|
||||
just --justfile ./frontend/justfile -d frontend uninstall
|
||||
|
||||
clean: clean-api clean-frontend
|
||||
clean-api:
|
||||
just --justfile ./did_router/justfile -d did_router clean
|
||||
clean-frontend:
|
||||
just --justfile ./frontend/justfile -d frontend clean
|
||||
Reference in New Issue
Block a user