graphql-engine/Makefile
Daniel Harvey 52082f0911 chore(tooling): add make run-pro-server
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8260
GitOrigin-RevId: f69ce5249bdc2b606ecb574049dd98558062399e
2023-03-09 12:05:02 +00:00

19 lines
500 B
Makefile

SHELL := bash -e -u -o pipefail
# default target
.PHONY: help
## help: prints help message
help:
@echo "Usage:"
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'
include ./scripts/make/build.mk
include ./scripts/make/ci.mk
include ./scripts/make/ghcid.mk
include ./scripts/make/legacy-tests.mk
include ./scripts/make/lint.mk
include ./scripts/make/metadata-api.mk
include ./scripts/make/run.mk
include ./scripts/make/tests.mk
include ./scripts/make/test-infrastructure.mk