Aggregate your YouTube subscriptions into a CLI feed.
go install github.com/gauthierbraillon/feedmix/cmd/feedmix@latestCreate OAuth credentials at Google Cloud Console:
- Create OAuth 2.0 Client ID (Desktop app)
- Add
http://localhost:8080/callbackas authorized redirect URI
Option 1: Using .env file (recommended)
cp .env.example .env
# Edit .env and add your credentialsOption 2: Using environment variables
export FEEDMIX_YOUTUBE_CLIENT_ID="your-client-id"
export FEEDMIX_YOUTUBE_CLIENT_SECRET="your-client-secret"feedmix auth # Authenticate with YouTube
feedmix feed # View subscriptions
feedmix feed --limit 5 # Limit results
feedmix config # Show config directory./scripts/ci.sh # Run tests, lint, security
./scripts/deploy.sh # Build release binariesgit tag v1.0.0 && git push origin v1.0.0GitHub Actions builds and publishes the release automatically.