Skip to content

Commit

Permalink
Allow all for CORS in backend (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffersonBledsoe authored Jun 19, 2024
1 parent f6f9c6e commit a099b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ ci-test: ## Run unit tests in CI
.PHONY: backend-docker-start
backend-docker-start: ## Starts a Docker-based backend for development
@echo "$(GREEN)==> Start Docker-based Plone Backend$(RESET)"
docker run -it --rm --name=backend -p 8080:8080 -e SITE=Plone $(DOCKER_IMAGE)
docker run -it --rm --name=backend -p 8080:8080 -e SITE=Plone -e CORS_ALLOW_ORIGIN='*' $(DOCKER_IMAGE)

## Storybook
.PHONY: storybook-start
Expand Down

0 comments on commit a099b0e

Please sign in to comment.