Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/statamic/starter-kit-podcaster
Statamic Starter Kit: Podcaster
https://github.com/statamic/starter-kit-podcaster
podcast starter-kit statamic statamic-3 statamic-starter-kit
Last synced: about 15 hours ago
JSON representation
Statamic Starter Kit: Podcaster
- Host: GitHub
- URL: https://github.com/statamic/starter-kit-podcaster
- Owner: statamic
- License: other
- Created: 2021-08-16T15:33:41.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-03T10:11:05.000Z (5 months ago)
- Last Synced: 2024-06-03T12:16:54.522Z (5 months ago)
- Topics: podcast, starter-kit, statamic, statamic-3, statamic-starter-kit
- Language: JavaScript
- Homepage: https://statamic.com/starter-kits/statamic/podcaster
- Size: 43.5 MB
- Stars: 10
- Watchers: 8
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Podcaster
> A Turn-Key Podcasting Starter Kit for Statamic## Features
This kit is deceptively simple – it may look like a 3 page site but there's a whole treasure trove of business logic and UI detail just under the surface.
### Livewire PoweredPodcaster's frontend uses [Livewire](https://livewire.laravel.com) to eliminate full page reloads, allowing the podcast player to persist across page changes without having to build and maintain the site as a SPA (single page application).
### The Player
The player is powered by [Plyr](https://plyr.io/) and [Alpine.js](https://alpinejs.dev).
An [Alpine Store](https://alpinejs.dev/magics/store) is used to configure the player, persist which episode is playing, and show details about it. This store is used by the main player and button components:
- `resources/views/partials/player.antlers.html`
- `resources/views/partials/play-buton.antlers.html`### Configurable Colors
Your primary and secondary colors are used to generate a color pallet that files the vertical wave graphic that makes your site look awesome. We recommend using a bold color for the primary, and a darker, more desaturated one for secondary, but feel free to experiment. If it looks good, use it.
The primary color is also used as an accent color in the player.
### The RSS Feed
A podcast's RSS feed is the only way the world interacts with your podcast when off your site. Advanced features implemented in the feed include:
- Funding Links
- Locking
- Completion
- Mark as Explicit
- Spoken Language
- Google/iTunes BlockingYour feed URL is set to `example.com/feed.xml` and is configurable in `routes/web.php`. You can access the feed URL with the following methods:
```php
route('feed')
``````antlers
{{ route:feed }}
```### PubSubHubbub
Podcast feeds usually rely on podcast directories crawling their
RSS feeds periodically looking for updates. Google's [PubHubHubbub](https://pubsubhubbub.appspot.com) helps your podcast update faster by broadcasting updates & new episodes.Enable PubSubHubbub in `config/podcaster.php` or with the following ENV variable.
```env
PODCASTER_PUBSUBHUBBUB_ENABLED=true
```### Additional Frontend Build Details
- Built with [TailwindCSS](https://tailwindcss.com)
- Dynamic favicon based on your podcast artwork
- Podcast platform links and badges
- Configurable social media links and icons
- Full [static site](https://github.com/statamic/ssg) support
- [SEO Pro](https://statamic.com/addons/statamic/seo-pro) support with basic meta and Open Graph fallbacks.
- Mobile/Responsive friendly### Custom Functionality
Just a few extra things built on the PHP/Laravel site to make the experience better.
- AddSlashes Modifier
- PubSubHubbub Event Listener
- Getting Started Dashboard Widget### Customize the Frontend
If you want to customize the frontend (it's a _starter_ kit after all), all you need to do while working on the site is run `npm run dev` for Vite to watch changes and recompile your Tailwind-driven CSS or JS.
In production, use `npm run build` in your deploy script instead for Production-ready compiled resources.