Files
connected-home/Makefile
Steve Sampson 9d0ba88225 Minimum Working Distributed Tracing
* This is super ugly / hacky... there's got to be a middleware /
  interceptor for tonic gRPC that can do this. If not, perhaps I'll
  write one...
2022-09-21 18:11:03 -03:00

27 lines
679 B
Makefile

.PHONY: frontend helm-update
# ----------------------------------------
# Build all crates in release mode
# ----------------------------------------
release:
cargo build --release
# ----------------------------------------
# Build all crates in release mode
# ----------------------------------------
debug:
cargo build
# ----------------------------------------
# Set Git Config for Git Hooks
# ----------------------------------------
hooks:
$(shell git config --local core.hooksPath .githooks)
# ----------------------------------------
# Make docker builder
# ----------------------------------------
builder:
docker build -f dockerfiles/Build . -t rustbuilder