Files
SubMiner/docs-site/README.md
sudacode 9c7e02cbf0 Enforce config example drift checks in CI and release
- add `verify:config-example` script with tests to fail on missing/stale generated config artifacts
- run the verification in CI and release workflows, and document it in release/docs guidance
- fix docs-site Cloudflare Pages watch path to `docs-site/*` with regression coverage
2026-03-10 20:06:41 -07:00

37 lines
764 B
Markdown

# SubMiner Docs
In-repo VitePress documentation source for SubMiner.
## Local development
```bash
bun --cwd docs-site install
bun run docs:dev
```
Build and preview:
```bash
bun run docs:build
bun run docs:preview
bun run docs:test
```
Direct package commands still work from `docs-site/` if you prefer:
```bash
cd docs-site
bun install
bun run docs:dev
```
## Cloudflare Pages
- Git repo: `ksyasuda/SubMiner`
- Root directory: `docs-site`
- Build command: `bun run docs:build`
- Build output directory: `.vitepress/dist`
- Build watch paths: `docs-site/*`
Cloudflare Pages watch paths use a single `*` wildcard for monorepo subdirectories. `docs-site/*` matches nested files under the docs site; `docs-site/**` can cause docs-only pushes to be skipped.