diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -10,8 +10,11 @@ bin/authzd: bin/sparkled: @go build -o ./bin/sparkled ./cmd/sparkled/main.go +bin/sts: + @go build -o ./bin/sts ./cmd/sts/main.go + clean: - @rm -f ./bin/authzd ./bin/sparkled + @rm -f ./bin/authzd ./bin/sparkled ./bin/sts @go clean -testcache setup: @@ -28,7 +31,7 @@ setup: @echo "Installing Python dependencies..." pip install dumb-init -build: bin/authzd bin/sparkled +build: bin/authzd bin/sparkled bin/sts test-unit: @go test -shuffle=on ./... @@ -62,6 +65,9 @@ run-envoy: run-sparkled: clean build @go tool godotenv -f .env.local,.env ./bin/sparkled +run-sts: clean build + @go tool godotenv -f .env.local,.env ./bin/sts + sh-image: build-builder-image @docker run --rm -it $(IMAGE_TAG) /bin/sh |
