Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export APP_GROUP=matchID
export PWD := $(shell pwd)
export APP_PATH=${PWD}
export GIT = $(shell which git)
export GITROOT = https://github.com/matchid-project
export GIT_ROOT = https://github.com/matchid-project
Comment thread
coderabbitai[bot] marked this conversation as resolved.
export GIT_BRANCH = master
export GIT_BACKEND = backend
export GIT_TOOLS = tools
Expand Down Expand Up @@ -135,9 +135,10 @@ backup-pull: data-tag

${GIT_BACKEND}:
@echo configuring matchID
@${GIT} clone -q ${GITROOT}/${GIT_BACKEND}
@${GIT} clone -q ${GIT_ROOT}/${GIT_BACKEND}
@cp artifacts ${GIT_BACKEND}/artifacts
@cp docker-compose-local.yml ${GIT_BACKEND}/docker-compose-local.yml
@echo "" >> ${GIT_BACKEND}/artifacts
@echo "export ES_NODES=${ES_NODES}" >> ${GIT_BACKEND}/artifacts
@echo "export PROJECTS=${PWD}/projects" >> ${GIT_BACKEND}/artifacts
@echo "export STORAGE_BUCKET=${STORAGE_BUCKET}" >> ${GIT_BACKEND}/artifacts
Expand Down
Loading