@@ -11,9 +11,9 @@ MAKEFLAGS+=--no-builtin-rules
1111CURRENT_DIR: =$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST ) ) ) )
1212GIT_FOLDER =$(CURRENT_DIR ) /.git
1313
14- PROJECT_NAME =kitconcept-site
14+ PROJECT_NAME =kitconcept-website
1515STACK_FILE =docker-compose-dev.yml
16- STACK_HOSTNAME =kitconcept-site .localhost
16+ STACK_HOSTNAME =kitconcept-website .localhost
1717
1818VOLTO_VERSION = $(shell cat frontend/mrs.developer.json | python -c "import sys, json; print(json.load(sys.stdin) ['core']['tag'])")
1919KC_VERSION =$(shell cat backend/version.txt)
@@ -133,7 +133,7 @@ build-images: ## Build docker images
133133stack-start : # # Local Stack: Start Services
134134 @echo " Start local Docker stack"
135135 VOLTO_VERSION=$(VOLTO_VERSION ) KC_VERSION=$(KC_VERSION ) docker compose -f $(STACK_FILE ) up -d --build
136- @echo " Now visit: http://kitconcept-site .localhost"
136+ @echo " Now visit: http://kitconcept-website .localhost"
137137
138138.PHONY : start-stack
139139stack-create-site : # # Local Stack: Create a new site
@@ -177,12 +177,12 @@ acceptance-test: ## Start Acceptance tests in interactive mode
177177.PHONY : acceptance-frontend-image-build
178178acceptance-frontend-image-build : # # Build Acceptance frontend server image
179179 @echo " Build acceptance frontend"
180- @docker build frontend -t kitconcept/kitconcept-site -frontend:acceptance -f frontend/Dockerfile --build-arg VOLTO_VERSION=$(VOLTO_VERSION )
180+ @docker build frontend -t kitconcept/kitconcept-website -frontend:acceptance -f frontend/Dockerfile --build-arg VOLTO_VERSION=$(VOLTO_VERSION )
181181
182182.PHONY : acceptance-backend-image-build
183183acceptance-backend-image-build : # # Build Acceptance backend server image
184184 @echo " Build acceptance backend"
185- @docker build backend -t kitconcept/kitconcept-site -backend:acceptance -f backend/Dockerfile.acceptance --build-arg KC_VERSION=$(KC_VERSION )
185+ @docker build backend -t kitconcept/kitconcept-website -backend:acceptance -f backend/Dockerfile.acceptance --build-arg KC_VERSION=$(KC_VERSION )
186186
187187.PHONY : acceptance-images-build
188188acceptance-images-build : # # Build Acceptance frontend/backend images
@@ -192,12 +192,12 @@ acceptance-images-build: ## Build Acceptance frontend/backend images
192192.PHONY : acceptance-frontend-container-start
193193acceptance-frontend-container-start : # # Start Acceptance frontend container
194194 @echo " Start acceptance frontend"
195- @docker run --rm -p 3000:3000 --name kitconcept-site -frontend-acceptance --link kitconcept-site -backend-acceptance:backend -e RAZZLE_API_PATH=http://localhost:55001/plone -e RAZZLE_INTERNAL_API_PATH=http://backend:55001/plone -d kitconcept/kitconcept-site -frontend:acceptance
195+ @docker run --rm -p 3000:3000 --name kitconcept-website -frontend-acceptance --link kitconcept-website -backend-acceptance:backend -e RAZZLE_API_PATH=http://localhost:55001/plone -e RAZZLE_INTERNAL_API_PATH=http://backend:55001/plone -d kitconcept/kitconcept-website -frontend:acceptance
196196
197197.PHONY : acceptance-backend-container-start
198198acceptance-backend-container-start : # # Start Acceptance backend container
199199 @echo " Start acceptance backend"
200- @docker run --rm -p 55001:55001 --name kitconcept-site -backend-acceptance -d kitconcept/kitconcept-site -backend:acceptance
200+ @docker run --rm -p 55001:55001 --name kitconcept-website -backend-acceptance -d kitconcept/kitconcept-website -backend:acceptance
201201
202202.PHONY : acceptance-containers-start
203203acceptance-containers-start : # # Start Acceptance containers
@@ -207,8 +207,8 @@ acceptance-containers-start: ## Start Acceptance containers
207207.PHONY : acceptance-containers-stop
208208acceptance-containers-stop : # # Stop Acceptance containers
209209 @echo " Stop acceptance containers"
210- @docker stop kitconcept-site -frontend-acceptance
211- @docker stop kitconcept-site -backend-acceptance
210+ @docker stop kitconcept-website -frontend-acceptance
211+ @docker stop kitconcept-website -backend-acceptance
212212
213213.PHONY : ci-acceptance-test
214214ci-acceptance-test : # # Run Acceptance tests in ci mode
0 commit comments