GUI packages, examples, and documentation for building desktop applications with Go and web technologies. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
725 B
YAML
36 lines
725 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
default:
|
|
cmds:
|
|
- task: dev
|
|
desc: "Start the development server."
|
|
|
|
install:
|
|
cmds:
|
|
- pip install -r requirements.txt
|
|
desc: "Install documentation dependencies."
|
|
status:
|
|
- test -f requirements.txt
|
|
|
|
dev:
|
|
run: always
|
|
cmds:
|
|
- mkdocs serve -o -c -w src -w mkdocs.yml
|
|
desc: "Start the live-reloading documentation server."
|
|
sources:
|
|
- mkdocs.yml
|
|
- "src/**/*"
|
|
- "src/**/*.css"
|
|
generates:
|
|
- "public/**/*"
|
|
|
|
build:
|
|
cmds:
|
|
- mkdocs build --clean -d public
|
|
desc: "Build the static documentation site."
|
|
|
|
deploy:
|
|
desc: "Deploy the documentation to GitHub Pages."
|
|
cmds:
|
|
- mkdocs gh-deploy --force
|