mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 02:25:17 +00:00
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
|
SUBMODULES = build_utils
|
||
|
SUBTARGETS = $(patsubst %,%/.git,$(SUBMODULES))
|
||
|
|
||
|
UTILS_PATH := build_utils
|
||
|
TEMPLATES_PATH := .
|
||
|
|
||
|
# Name of the service
|
||
|
SERVICE_NAME := control-center
|
||
|
# Service image default tag
|
||
|
SERVICE_IMAGE_TAG ?= $(shell git rev-parse HEAD)
|
||
|
# The tag for service image to be pushed with
|
||
|
SERVICE_IMAGE_PUSH_TAG ?= $(SERVICE_IMAGE_TAG)
|
||
|
|
||
|
# Base image for the service
|
||
|
BASE_IMAGE_NAME := service-fe
|
||
|
BASE_IMAGE_TAG := 768cf0f40600e290060502e047dd2e86d4fd6020
|
||
|
|
||
|
BUILD_IMAGE_TAG := 55e987e74e9457191a5b4a7c5dc9e3838ae82d2b
|
||
|
|
||
|
GIT_SSH_COMMAND :=
|
||
|
DOCKER_RUN_OPTS = -e GIT_SSH_COMMAND='$(GIT_SSH_COMMAND)'
|
||
|
|
||
|
CALL_W_CONTAINER := init build clean submodules thrift
|
||
|
|
||
|
.PHONY: $(CALL_W_CONTAINER)
|
||
|
|
||
|
all: build
|
||
|
|
||
|
-include $(UTILS_PATH)/make_lib/utils_image.mk
|
||
|
-include $(UTILS_PATH)/make_lib/utils_container.mk
|
||
|
|
||
|
$(SUBTARGETS): %/.git: %
|
||
|
git submodule update --init $<
|
||
|
touch $@
|
||
|
|
||
|
submodules: $(SUBTARGETS)
|
||
|
|
||
|
init:
|
||
|
npm install
|
||
|
|
||
|
build: src/gen-nodejs src/gen-json
|
||
|
npm run build
|
||
|
|
||
|
clean:
|
||
|
rm -rf dist src/app/domain/gen-* config/runtime/gen-*
|
||
|
|
||
|
# utils
|
||
|
src/gen-nodejs: node_modules/damsel/proto/domain_config.thrift
|
||
|
thrift -r -gen js:node,runtime_package=woody_js/src/client/gen -o ./src/app/domain ./node_modules/damsel/proto/domain_config.thrift
|
||
|
|
||
|
src/gen-json: node_modules/damsel/proto/domain_config.thrift
|
||
|
thrift -r -gen json -o ./src/assets ./node_modules/damsel/proto/domain_config.thrift
|