mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
6d79b7dfaf
`make run-oss-server` will now build the Console for OSS ("CE"), start PostgreSQL, and run a simply-configured server. PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8652 GitOrigin-RevId: cada25e66fe216867ff331d597764e64aaf2dc19
37 lines
1.2 KiB
Makefile
37 lines
1.2 KiB
Makefile
CONSOLE_CE_ASSETS_PATH = frontend/dist/apps/server-assets-console-ce
|
|
CONSOLE_EE_ASSETS_PATH = frontend/dist/apps/server-assets-console-ee
|
|
|
|
.PHONY: build-console-ce-assets
|
|
## build-console-ce-assets: Build Console assets required for the CE server
|
|
build-console-ce-assets: $(CONSOLE_CE_ASSETS_PATH)
|
|
|
|
.PHONY: build-console-ee-assets
|
|
## build-console-ee-assets: Build Console assets required for the EE server
|
|
build-console-ee-assets: $(CONSOLE_EE_ASSETS_PATH)
|
|
|
|
# We split the named, phony targets from the path-based targets below so that
|
|
# `make` has a chance of avoiding rework, by recognizing that the output path
|
|
# is newer than the inputs.
|
|
#
|
|
# We use `touch` to ensure that the path is marked as newer, because modified
|
|
# timestamps on directories can be quite unreliable.
|
|
#
|
|
# `$@` refers to the target.
|
|
|
|
$(CONSOLE_CE_ASSETS_PATH): frontend/node_modules
|
|
cd frontend && npm run server-build:ce
|
|
touch $@
|
|
|
|
$(CONSOLE_EE_ASSETS_PATH): frontend/node_modules
|
|
cd frontend && npm run server-build:ee
|
|
touch $@
|
|
|
|
# Install node_modules if package-lock.json changes
|
|
frontend/node_modules: frontend/package-lock.json
|
|
cd frontend && npm install
|
|
touch $@
|
|
|
|
# Cleanly install node_modules if package.json changes
|
|
frontend/package-lock.json: frontend/package.json
|
|
cd frontend && npm ci
|