fga-demo/Makefile
2022-10-23 18:03:10 +01:00

19 lines
240 B
Makefile

make: build
FGA_API_HOST="http://localhost:8080"
.PHONY: infra-up
infra-up:
@docker compose -f docker-compose.yaml up -d
.PHONY: check
check:
@curl -X GET "${FGA_API_HOST}/healthz"
.PHONY: build
build:
@go build
clean:
@go clean