Makefile 297 B

1234567891011121314151617
  1. .DEFAULT_GOAL := all
  2. .DELETE_ON_ERROR:
  3. .SUFFIXES:
  4. .PHONY: all
  5. all: deps build
  6. .PHONY: deps
  7. deps:
  8. -@echo "-> $@"
  9. @git submodule update --remote --init
  10. @go mod tidy
  11. .PHONY: build
  12. build:
  13. -@echo "-> $@"
  14. rover supergraph compose --config ./supergraph.yaml --output ./devops/prod-schema.graphql