Podscope podcast CMS https://podscope.cc
  • PHP 66.1%
  • Blade 32.8%
  • CSS 0.5%
  • Shell 0.4%
  • JavaScript 0.2%
Find a file
gdadkisson b7e8b3a4bb security: remove hardcoded Forgejo token from release.md
Public repo must not contain a plaintext token. Reference the scoped token in the
global ~/.claude/CLAUDE.md Git Server section and build the push URL at runtime.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01ADt1Sgmq5H5H74VxhSztQd
2026-06-19 17:22:47 -04:00
.claude/commands security: remove hardcoded Forgejo token from release.md 2026-06-19 17:22:47 -04:00
app Add H-3 and M-1 regression tests; extract testable purchase-session check 2026-06-14 08:05:03 -04:00
bootstrap Correct trusted-proxy rationale; make the proxy test a genuine guard 2026-06-14 07:58:46 -04:00
config v0.77 - Security: restrict trusted proxies to loopback (fix spoofable client IP) 2026-06-14 07:44:18 -04:00
database v0.74 -- Episode body templates 2026-06-10 11:32:47 -04:00
public v0.76 -- bump version; sync republished Filament 5.6.7 assets 2026-06-13 22:07:45 -04:00
resources v0.73 -- Transcript file upload and player page download links 2026-06-10 09:28:30 -04:00
routes Address medium/low security findings (M-1, M-3, M-4, L-2, L-5) 2026-06-13 21:58:44 -04:00
storage Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
tests Rename session() test helper to makeSession() (collides with base TestCase) 2026-06-14 08:05:32 -04:00
.editorconfig Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
.env.example Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
.gitattributes Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
.gitignore Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
.npmrc Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
artisan Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
composer.json Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
composer.lock M-2 -- composer update within constraints to clear 17 advisories 2026-06-13 22:00:47 -04:00
install.sh Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
LICENSE Add AGPL-3.0 license 2026-06-09 19:12:09 +00:00
package-lock.json Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
package.json Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
phpunit.xml Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
README.md Initial public release -- v0.1 2026-05-21 18:53:00 +00:00
vite.config.js Initial public release -- v0.1 2026-05-21 18:53:00 +00:00

Podscope

A self-hosted podcast CMS and membership platform. Publish shows, manage episodes, accept paid memberships via Stripe, and distribute private RSS feeds to subscribers.

Features

  • Multi-show support
  • Episode management with Podcasting 2.0 metadata (persons, transcripts, chapters, soundbites)
  • Paid membership plans per show or site-wide (via Stripe / Laravel Cashier)
  • Private RSS feeds for subscribers
  • Free preview window for paid episodes
  • Episode play tracking and stats
  • Individual episode purchases
  • Public RSS feeds with OP3 tracking support
  • Filament admin panel
  • Backblaze B2 storage support
  • Redis queue support
  • Alpine.js frontend

Requirements

  • PHP 8.4+
  • PostgreSQL 14+
  • Redis
  • Node.js 20+ (for asset compilation)
  • Composer
  • A Stripe account (for memberships and purchases)
  • A Backblaze B2 bucket (optional, for media storage)

Quick Install

bash <(curl -fsSL https://git.podscope.cc/podscope/podscope/raw/branch/main/install.sh)

Manual Install

git clone https://git.podscope.cc/podscope/podscope.git
cd podscope
composer install --no-dev --optimize-autoloader
cp .env.example .env
php artisan key:generate
# Edit .env with your database, Stripe, and storage credentials
php artisan migrate --force
php artisan storage:link
npm install && npm run build
php artisan config:cache
php artisan route:cache
php artisan view:cache

Then configure your web server to point at the public/ directory and set up a queue worker:

php artisan queue:work --sleep=3 --tries=3

Configuration

All site settings (name, artwork, RSS options) are managed in the Filament admin panel under Settings.

Key .env values:

Variable Description
APP_URL Your site URL (e.g. https://example.com)
DB_CONNECTION Set to pgsql
DB_HOST, DB_DATABASE, DB_USERNAME, DB_PASSWORD PostgreSQL credentials
STRIPE_KEY, STRIPE_SECRET, STRIPE_WEBHOOK_SECRET Stripe API keys
FILESYSTEM_DISK public for local storage or b2 for Backblaze
AWS_* / B2_* Backblaze B2 credentials if using cloud storage
REDIS_HOST Redis connection
MAIL_* Mail settings for transactional email

License

MIT