mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-16 05:12:47 -06:00
d10827c8fa
This is used in post-merge. I have yet to fix the generation of this md file and so I am just returning this command for now to fix post merge until this is done. Signed-off-by: Charlie Egan <charlie@styra.com>
24 lines
296 B
Makefile
24 lines
296 B
Makefile
.PHONY: install
|
|
install:
|
|
npm install
|
|
|
|
.PHONY: ci
|
|
ci:
|
|
npm ci
|
|
|
|
.PHONY: dev
|
|
dev:
|
|
npx docusaurus start
|
|
|
|
.PHONY: build
|
|
build:
|
|
npx docusaurus build
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf build .docusaurus
|
|
|
|
.PHONY: generate-cli-docs
|
|
generate-cli-docs:
|
|
$(CURDIR)/../build/gen-cli-docs.sh "$(CURDIR)/content"
|