-
Notifications
You must be signed in to change notification settings - Fork 393
/
Makefile
62 lines (45 loc) · 2.31 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
.PHONY: help
help: ## Displays this list of targets with descriptions
@echo "The following commands are available:\n"
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: docs
docs: ## Generate projects documentation (from "Documentation" directory)
mkdir -p Documentation-GENERATED-temp
docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation
.PHONY: test-docs
test-docs: ## Test the documentation rendering
mkdir -p Documentation-GENERATED-temp
docker run --rm --pull always -v "$(shell pwd)":/project -t ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --fail-on-log
.PHONY: generate
generate: setup-typo3 codesnippets command-json ## Regenerate automatic code documentation
.PHONY: codesnippets
codesnippets: ## Regenerate code snippets
ddev exec .Build/bin/typo3 codesnippet:create Documentation/
.PHONY: setup-typo3
setup-typo3: ## Setup TYPO3 stub
ddev exec '.Build/bin/typo3 setup --driver=sqlite --username=db --password=db --admin-username=john-doe --admin-user-password="John-Doe-1701D." --admin-email="[email protected]" --project-name="TYPO3 Docs" --no-interaction --server-type=apache --force'
.PHONY: command-json
command-json: ## Regenerate JSON file containing all console commands
ddev exec .Build/bin/typo3 clinspector:gadget > Documentation/ApiOverview/CommandControllers/commands.json
echo "" >> Documentation/ApiOverview/CommandControllers/commands.json
.PHONY: test-lint
test-lint: ## Regenerate code snippets
Build/Scripts/runTests.sh -s lint
.PHONY: test-cgl
test-cgl: ## Regenerate code snippets
Build/Scripts/runTests.sh -s cgl
.PHONY: test-yaml
test-yaml: ## Regenerate code snippets
Build/Scripts/runTests.sh -s yamlLint
.PHONY: composerUpdate
composerUpdate: ## Update all dependencies (the composer.lock is not commited)
Build/Scripts/runTests.sh -s composerUpdate
.PHONY: install
install: composerUpdate## Update all dependencies (the composer.lock is not commited)
.PHONY: test
test: test-docs test-lint test-cgl test-yaml## Test the documentation rendering
.PHONY: fix-cgl
fix-cgl: ## Fix cgl
Build/Scripts/runTests.sh -s cgl
.PHONY: Fix all
fix: fix-cgl## Test the documentation rendering