Allow streamer/VOD browsing without Twitch credentials via public GraphQL fallback, harden queue visibility by syncing renderer state with backend updates, and ship a comprehensive Astro/MDX documentation set similar to established downloader projects.
31 lines
547 B
Markdown
31 lines
547 B
Markdown
# Twitch VOD Manager Docs
|
|
|
|
Documentation site for users and contributors, built with Astro + MDX.
|
|
|
|
## Local development
|
|
|
|
```bash
|
|
npm install
|
|
npm run dev
|
|
```
|
|
|
|
## Production build
|
|
|
|
```bash
|
|
npm run build
|
|
npm run preview
|
|
```
|
|
|
|
## Writing docs
|
|
|
|
- Add pages in `src/pages/` (`.astro` or `.mdx`)
|
|
- Shared layout lives in `src/layouts/BaseLayout.astro`
|
|
- Global styles live in `src/styles/global.css`
|
|
- Keep command examples copy-paste ready
|
|
|
|
## Scope
|
|
|
|
- User setup and troubleshooting
|
|
- Feature documentation
|
|
- Developer architecture and release workflow
|