1234567891011121314151617181920212223 |
- .DEFAULT_GOAL := all
- .DELETE_ON_ERROR:
- .SUFFIXES:
- .PHONY: all
- all: deps build
- .PHONY: deps
- deps:
- -@echo "-> $@"
- @git submodule update --remote --init
- @go mod tidy
- .PHONY: build
- build:
- -@echo "-> $@"
- rover supergraph compose --config ./supergraph.yaml --output ./devops/prod-schema.graphql
- .PHONY: gen-json
- gen-json:
- -@echo "-> $@"
- -@echo "=== Generating easyJson bindings"
- easyjson model/page_info.go
|