You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,5 @@
1
+
include .env
2
+
1
3
.PHONY : help cp-env start-simple stop-simple
2
4
3
5
help: ## Outputs this help screen
@@ -10,7 +12,7 @@ cp-env: ## Copy the .env file to .env.local
10
12
cp .env .env.local
11
13
12
14
start-simple: ## Start the simple Api-Platform backend and the Storybook frontend
13
-
cd backend/simple && make up&&cd .. && yarn run storybook
15
+
cd backend/simple && make build && make up HTTP_PORT=${SIMPLE_HTTP_PORT} HTTP3_PORT=${SIMPLE_HTTPS_PORT} HTTPS_PORT=${SIMPLE_HTTPS_PORT}&&cd .. && yarn run storybook
14
16
15
17
stop-simple: ## Stop and prune the simple Api-Platform backend
0 commit comments