File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,11 @@ start: ## Start development environment
70
70
echo " Running: ${DOCKER_COMPOSE} up"
71
71
${DOCKER_COMPOSE} up
72
72
73
+ .PHONY : shell
74
+ shell : # # Start a shell in the frontend container
75
+ echo " Running: ${DOCKER_COMPOSE} run frontend bash"
76
+ ${DOCKER_COMPOSE} run --entrypoint=bash frontend
77
+
73
78
.PHONY : cypress-open
74
79
cypress-open : # # Open cypress integration tests
75
80
NODE_ENV=development $(NODE_MODULES ) /cypress/bin/cypress open
Original file line number Diff line number Diff line change 1
1
version : " 3"
2
2
services :
3
3
backend :
4
- image : plone /plone-backend:${PLONE_VERSION:-6}
4
+ image : eeacms /plone-backend
5
5
ports :
6
6
- " 8080:8080"
7
7
environment :
8
8
SITE : " Plone"
9
+ PROFILES : " eea.kitkat:testing"
9
10
10
11
frontend :
11
12
build :
@@ -23,6 +24,9 @@ services:
23
24
volumes :
24
25
- ./:/app/src/addons/${ADDON_PATH}
25
26
environment :
27
+ CI : " true"
28
+ NODE_ENV : " development"
29
+ RAZZLE_JEST_CONFIG : " src/addons/${ADDON_PATH}/jest-addon.config.js"
26
30
RAZZLE_INTERNAL_API_PATH : " http://backend:8080/Plone"
27
31
RAZZLE_DEV_PROXY_API_PATH : " http://backend:8080/Plone"
28
32
HOST : " 0.0.0.0"
You can’t perform that action at this time.
0 commit comments