Skip to content

Commit

Permalink
Merge pull request #32 from kitconcept/make-export
Browse files Browse the repository at this point in the history
Add make export command
  • Loading branch information
tisto authored May 16, 2024
2 parents 3ff5be5 + 1a677eb commit 3b856cb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ clean: ## Clean installation
$(MAKE) -C "./backend/" clean
$(MAKE) -C "./frontend/" clean

.PHONY: export
export: ## Clean installation
@echo "Export"
$(MAKE) -C "./backend/" export

.PHONY: format
format: ## Format codebase
@echo "Format codebase"
Expand Down
4 changes: 4 additions & 0 deletions backend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ install: build-dev ## Install Plone 6.0
.PHONY: build
build: build-dev ## Install Plone 6.0

.PHONY: export
export: ## Clean installation
bin/export-distribution instance/etc/zope.conf Plone

.PHONY: Clean
clean: ## Clean
git clean -Xdf
Expand Down

0 comments on commit 3b856cb

Please sign in to comment.