feat: Complete fleet — 94 skills across 10+ domains
Pulled ALL skills from 15 source repositories: - anthropics/skills: 16 (docs, design, MCP, testing) - obra/superpowers: 14 (TDD, debugging, agents, planning) - coreyhaines31/marketingskills: 25 (marketing, CRO, SEO, growth) - better-auth/skills: 5 (auth patterns) - vercel-labs/agent-skills: 5 (React, design, Vercel) - antfu/skills: 16 (Vue, Vite, Vitest, pnpm, Turborepo) - Plus 13 individual skills from various repos Mosaic Stack is not limited to coding — the Orchestrator and subagents serve coding, business, design, marketing, writing, logistics, analysis, and more. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
152
skills/slidev/references/core-hosting.md
Normal file
152
skills/slidev/references/core-hosting.md
Normal file
@@ -0,0 +1,152 @@
|
||||
---
|
||||
name: hosting
|
||||
description: Build and deploy Slidev presentations
|
||||
---
|
||||
|
||||
# Hosting & Deployment
|
||||
|
||||
Build and deploy Slidev presentations.
|
||||
|
||||
## Build for Production
|
||||
|
||||
```bash
|
||||
slidev build
|
||||
```
|
||||
|
||||
Output: `dist/` folder (static SPA)
|
||||
|
||||
### Options
|
||||
|
||||
```bash
|
||||
slidev build --base /talks/my-talk/ # Custom base path
|
||||
slidev build --out public # Custom output dir
|
||||
slidev build --download # Include PDF
|
||||
slidev build --without-notes # Exclude notes
|
||||
```
|
||||
|
||||
### Multiple Presentations
|
||||
|
||||
```bash
|
||||
slidev build slides1.md slides2.md
|
||||
```
|
||||
|
||||
## GitHub Pages
|
||||
|
||||
### GitHub Actions
|
||||
|
||||
Create `.github/workflows/deploy.yml`:
|
||||
|
||||
```yaml
|
||||
name: Deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 'lts/*'
|
||||
|
||||
- name: Install
|
||||
run: npm install
|
||||
|
||||
- name: Build
|
||||
run: npm run build -- --base /${{ github.event.repository.name }}/
|
||||
|
||||
- uses: actions/configure-pages@v4
|
||||
|
||||
- uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: dist
|
||||
|
||||
- uses: actions/deploy-pages@v4
|
||||
```
|
||||
|
||||
## Netlify
|
||||
|
||||
Create `netlify.toml`:
|
||||
|
||||
```toml
|
||||
[build]
|
||||
publish = 'dist'
|
||||
command = 'npm run build'
|
||||
|
||||
[[redirects]]
|
||||
from = '/*'
|
||||
to = '/index.html'
|
||||
status = 200
|
||||
```
|
||||
|
||||
## Vercel
|
||||
|
||||
Create `vercel.json`:
|
||||
|
||||
```json
|
||||
{
|
||||
"rewrites": [
|
||||
{ "source": "/(.*)", "destination": "/index.html" }
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
## Docker
|
||||
|
||||
### Using Official Image
|
||||
|
||||
```bash
|
||||
docker run --name slidev --rm -it \
|
||||
-v ${PWD}:/slidev \
|
||||
-p 3030:3030 \
|
||||
tangramor/slidev:latest
|
||||
```
|
||||
|
||||
### Custom Dockerfile
|
||||
|
||||
```dockerfile
|
||||
FROM tangramor/slidev:latest
|
||||
|
||||
COPY slides.md .
|
||||
COPY public ./public
|
||||
|
||||
RUN npm run build
|
||||
|
||||
EXPOSE 80
|
||||
CMD ["npx", "serve", "dist"]
|
||||
```
|
||||
|
||||
## Base Path
|
||||
|
||||
For subdirectory deployment:
|
||||
|
||||
```bash
|
||||
# Build
|
||||
slidev build --base /my-slides/
|
||||
|
||||
# Or in headmatter
|
||||
---
|
||||
base: /my-slides/
|
||||
---
|
||||
```
|
||||
|
||||
## Router Mode
|
||||
|
||||
For servers without rewrite support:
|
||||
|
||||
```yaml
|
||||
---
|
||||
routerMode: hash
|
||||
---
|
||||
```
|
||||
|
||||
URLs become: `/#/1`, `/#/2`, etc.
|
||||
Reference in New Issue
Block a user