From 59622a9e831fa386ccc1a8c08cbc2dfcce8a2049 Mon Sep 17 00:00:00 2001 From: Apostolof Date: Sun, 6 Dec 2020 14:19:55 +0200 Subject: [PATCH] Change run target to execute all pipeline --- docker/Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docker/Makefile b/docker/Makefile index 43a6344..7b8bcd0 100644 --- a/docker/Makefile +++ b/docker/Makefile @@ -2,14 +2,17 @@ PACKAGES := $(abspath ${CURDIR}/../packages) REPORTS := $(abspath ${CURDIR}/reports) GANACHE_VOLUMES := $(abspath ${CURDIR}/ganache/volumes) +run: compose-run build-contracts-migrate run-contracts-migrate build-app run-app + @echo "Concordia is up and running, head over to http://localhost:7777." + # Targets for building/running/stopping the blockchain and rendezvous server (using the docker-compose file) -build: +compose-build: @docker-compose -f ./docker-compose.yml -p concordia build -run: +compose-run: @docker-compose -f ./docker-compose.yml -p concordia up -d -stop: +compose-stop: @docker-compose -f ./docker-compose.yml -p concordia down -stop-clean-data: +compose-stop-clean-data: @docker-compose -f ./docker-compose.yml -p concordia down -v # Ganache targets