graphql-engine/server/Makefile
Shahidh K Muhammed 76ceb707f4
bundle console assets into server (close #516, close #521, close #2130) (#2192)
This PR builds console static assets into the server docker image at `/srv/console-assets`. When env var `HASURA_GRAPHQL_CONSOLE_ASSETS_DIR=/srv/console-assets` or flag `--console-assets-dir=/srv/console-assets` is set on the server, the files in this directory are served at `/console/assets/*`.

The console html template will have a variable called `cdnAssets: false` when this flag is set and it loads assets from server itself instead of CDN.

The assets are moved to a new bucket with a new naming scheme:

```
graphql-engine-cdn.hasura.io/console/assets/
   /common/{}
   /versioned/<version/{}
   /channel/<channel>/<version>/{}
```

Console served by CLI will still load assets from CDN - will fix that in the next release.
2019-05-16 13:15:29 +05:30

81 lines
2.7 KiB
Makefile

project := graphql-engine
registry := hasura
VERSION ?= $(shell ../scripts/get-version.sh)
export VERSION
nproc := $(shell nproc)
# TODO: needs to be replaced with something like yq
stack_resolver := $(shell awk '/^resolver:/ {print $$2;}' stack.yaml)
packager_ver := 20190326
pg_dump_ver := 11
project_dir := $(shell pwd)
build_dir := $(project_dir)/$(shell stack path --dist-dir)/build
build_output := /build/_server_output
build:
stack build --fast --ghc-options '-j$(nproc)'
exec: build
stack exec graphql-engine -- serve
exec-local-console: build-local-console
stack exec graphql-engine -- serve --enable-console --console-assets-dir ../console/static/dist
image: $(project).cabal
docker build -t "$(registry)/$(project):$(VERSION)" \
-f packaging/Dockerfile \
--build-arg build_flags=--fast \
--build-arg project=$(project) \
--build-arg stack_resolver=$(stack_resolver) \
--build-arg packager_version=$(packager_ver) \
.
release-image: $(project).cabal
docker build -t "$(registry)/$(project):$(VERSION)" \
-f packaging/Dockerfile \
--build-arg project=$(project) \
--build-arg stack_resolver=$(stack_resolver) \
--build-arg packager_version=$(packager_ver) \
.
# assumes this is built in circleci
ci-binary:
mkdir -p packaging/build/rootfs
stack $(STACK_FLAGS) build $(BUILD_FLAGS)
mkdir -p $(build_output)
cp $(build_dir)/$(project)/$(project) $(build_output)
# cp "$(build_dir)/$(project)-test/$(project)-test" $(build_output)
echo "$(VERSION)" > $(build_output)/version.txt
ci-test:
$(build_output)/graphql-engine-test --database-url=$(DATABASE_URL)
# assumes this is built in circleci
ci-image:
docker create -v /root/ --name dummy alpine:3.4 /bin/true
docker cp $(build_dir)/$(project)/$(project) dummy:/root/
docker run --rm --volumes-from dummy $(registry)/graphql-engine-packager:$(packager_ver) /build.sh $(project) | tar -x -C packaging/build/rootfs
strip --strip-unneeded packaging/build/rootfs/bin/$(project)
cp /usr/lib/postgresql/$(pg_dump_ver)/bin/pg_dump packaging/build/rootfs/bin/pg_dump
upx packaging/build/rootfs/bin/$(project)
docker build -t $(registry)/$(project):$(VERSION) packaging/build/
ci-save-image:
docker save -o $(build_output)/image.tar $(registry)/$(project):$(VERSION)
ci-load-image:
docker load -i $(build_output)/image.tar
push:
docker push $(registry)/$(project):$(VERSION)
push-latest:
docker tag $(registry)/$(project):$(VERSION) $(registry)/$(project):latest
docker push $(registry)/$(project):latest
packager: packaging/packager.df
docker build -t "$(registry)/graphql-engine-packager:$(packager_ver)" -f packaging/packager.df ./packaging/
.PHONY: image release-image push packager ci-binary-and-test ci-image ci-save-image ci-load-image build exec build-local-console exec-local-console