{"id":50134880,"url":"https://github.com/willtheorangeguy/transcript-site-template","last_synced_at":"2026-05-23T21:04:14.386Z","repository":{"id":349394540,"uuid":"1202092346","full_name":"willtheorangeguy/transcript-site-template","owner":"willtheorangeguy","description":"A template for all the transcipt project's websites.","archived":false,"fork":false,"pushed_at":"2026-05-02T17:16:00.000Z","size":367,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-02T19:14:31.676Z","etag":null,"topics":["astro","podcast","transcript"],"latest_commit_sha":null,"homepage":"https://williamvdg.me/transcript-site-template/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/willtheorangeguy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["willtheorangeguy"],"custom":["https://paypal.me/wvdg44"]}},"created_at":"2026-04-05T15:32:25.000Z","updated_at":"2026-05-02T17:15:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/willtheorangeguy/transcript-site-template","commit_stats":null,"previous_names":["willtheorangeguy/transcript-site-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/willtheorangeguy/transcript-site-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willtheorangeguy%2Ftranscript-site-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willtheorangeguy%2Ftranscript-site-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willtheorangeguy%2Ftranscript-site-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willtheorangeguy%2Ftranscript-site-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/willtheorangeguy","download_url":"https://codeload.github.com/willtheorangeguy/transcript-site-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/willtheorangeguy%2Ftranscript-site-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33412082,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T18:09:33.147Z","status":"ssl_error","status_checked_at":"2026-05-23T18:09:31.380Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["astro","podcast","transcript"],"created_at":"2026-05-23T21:04:13.342Z","updated_at":"2026-05-23T21:04:14.381Z","avatar_url":"https://github.com/willtheorangeguy.png","language":"TypeScript","funding_links":["https://github.com/sponsors/willtheorangeguy","https://paypal.me/wvdg44"],"categories":[],"sub_categories":[],"readme":"# Podcast Template\n\nA reusable Astro template for creating podcast websites from markdown transcripts and summaries.\n\n## Features\n\n- 📄 **Markdown-based content** - Add transcript and summary files, the site builds automatically\n- 🔍 **Full-text search** - Search through all episode transcripts with Pagefind\n- 🎨 **Customizable theming** - CSS custom properties for easy per-podcast styling\n- 📺 **YouTube integration** - Optional YouTube API support for video thumbnails and links\n- 📱 **Responsive design** - Mobile-first, works great on all devices\n- ⚡ **Static output** - Deploy to GitHub Pages, Netlify, Vercel, or any static host\n\n## Quick Start\n\n1. **Copy this template** to a `web/` folder in your podcast project\n2. **Ensure your content** is in year folders alongside the `web/` folder (see structure below)\n3. **Configure** `podcast.config.ts` with your podcast info\n4. **Customize** `src/styles/theme.css` to match your brand\n5. **Build and deploy**: `npm run build`\n\n## Project Structure\n\nThe template expects markdown files to live in year folders **in the parent directory**:\n\n```\nyour-podcast-project/\n├── 2020/\n│   ├── 2020-05-01 - Episode Title_transcript_corrected.md\n│   └── 2020-05-01 - Episode Title_summary_corrected.md\n├── 2021/\n│   └── ...\n├── 2022/\n│   └── ...\n├── 2023/\n│   └── ...\n├── 2024/\n│   └── ...\n├── 2025/\n│   └── ...\n├── 2026/\n│   └── ...\n└── web/                    \u003c-- This template goes here\n    ├── src/\n    ├── podcast.config.ts\n    ├── package.json\n    └── ...\n```\n\n### File Naming Convention\n\nEach episode needs two files:\n- `{date} - {title}_transcript_corrected.md` - Full transcript\n- `{date} - {title}_summary_corrected.md` - Episode summary\n\nThe date should be in `YYYY-MM-DD` format at the start of the filename.\n\n## Configuration\n\nEdit `podcast.config.ts` to customize your site:\n\n```typescript\nconst config = {\n  name: \"My Podcast\",                    // Shown in header and metadata\n  description: \"About my podcast\",       // SEO description\n  siteUrl: \"https://example.com\",        // Your site URL\n  youtubeChannelId: \"UC...\",             // Optional: YouTube channel ID\n  latestEpisodesCount: 6,                // Episodes on homepage\n  theme: {\n    primary: \"#3b82f6\",                  // Brand color\n    secondary: \"#1e40af\",                // Accent color\n    background: \"#ffffff\",\n    text: \"#1f2937\",\n    textMuted: \"#6b7280\",\n    surface: \"#f9fafb\",\n    border: \"#e5e7eb\",\n  },\n  social: {\n    youtube: \"https://youtube.com/...\",\n    twitter: \"https://twitter.com/...\",\n  },\n};\n```\n\n## Theming\n\nFor deeper customization, edit `src/styles/theme.css`:\n\n```css\n:root {\n  --color-primary: #your-color;\n  --font-family: 'Your Font', sans-serif;\n  --radius-lg: 12px;\n  /* ... see file for all variables */\n}\n```\n\n## YouTube Integration (Optional)\n\nTo fetch video thumbnails and links from YouTube:\n\n1. Get a YouTube API key from [Google Cloud Console](https://console.cloud.google.com/)\n2. Enable the \"YouTube Data API v3\"\n3. Add your channel ID to `podcast.config.ts`\n4. Run:\n\n```bash\nset YOUTUBE_API_KEY=your-api-key\nnpm run fetch-youtube\n```\n\nThis caches video data in `.youtube-cache.json`. The build process matches episodes to videos by title/date similarity.\n\n## Commands\n\n| Command | Description |\n|---------|-------------|\n| `npm install` | Install dependencies |\n| `npm run dev` | Start dev server at localhost:4321 |\n| `npm run build` | Build for production (includes search indexing) |\n| `npm run preview` | Preview production build locally |\n| `npm run fetch-youtube` | Fetch/refresh YouTube video data |\n\n## Deployment\n\n### GitHub Pages\n\n1. In your repo settings, set Pages source to \"GitHub Actions\"\n2. Create `.github/workflows/deploy.yml`:\n\n```yaml\nname: Deploy to GitHub Pages\n\non:\n  push:\n    branches: [main]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    defaults:\n      run:\n        working-directory: web\n    steps:\n      - uses: actions/checkout@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 22\n      - run: npm ci\n      - run: npm run build\n      - uses: actions/upload-pages-artifact@v3\n        with:\n          path: web/dist\n\n  deploy:\n    needs: build\n    runs-on: ubuntu-latest\n    permissions:\n      pages: write\n      id-token: write\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    steps:\n      - uses: actions/deploy-pages@v4\n        id: deployment\n```\n\n### Netlify / Vercel\n\nJust connect your repo and set:\n- Build command: `npm run build`\n- Output directory: `dist`\n\n## Template File Structure\n\n```\nweb/                       # This template\n├── src/\n│   ├── components/        # Reusable UI components\n│   ├── layouts/           # Page layouts\n│   ├── pages/             # Routes\n│   ├── styles/            # Global CSS and theme\n│   └── utils/             # Content loading and utilities\n├── public/                # Static assets (favicon, images)\n├── scripts/               # Build scripts (YouTube fetcher)\n├── podcast.config.ts      # Site configuration\n└── package.json\n\n../                        # Parent directory (content)\n├── 2020/                  # Year folders with markdown files\n├── 2021/\n├── ...\n└── 2026/\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilltheorangeguy%2Ftranscript-site-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilltheorangeguy%2Ftranscript-site-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilltheorangeguy%2Ftranscript-site-template/lists"}