helm-charts/.taskfiles/docs.yaml
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 567577762f
docs: Add initial docs
2022-08-07 18:58:19 +02:00

22 lines
482 B
YAML

---
version: "3"
vars:
MKDOCS_CONFIG_FILE: .ci/mkdocs/mkdocs.yaml
tasks:
build:
desc: >
Build documentation using mkdocs
cmds:
- mkdocs build --config-file ./.ci/mkdocs/mkdocs.yaml
silent: true
serve:
desc: >
Start development server on http://localhost:{{ .PORT }} using mkdocs
vars:
PORT: 8000
cmds:
- mkdocs serve --config-file ./.ci/mkdocs/mkdocs.yaml --dev-addr localhost:{{ .PORT }} --livereload
silent: true