{"id":41944292,"url":"https://github.com/podverse/podverse","last_synced_at":"2026-05-06T21:02:39.849Z","repository":{"id":334311186,"uuid":"1140906704","full_name":"podverse/podverse","owner":"podverse","description":"Podverse monorepo for all infrastructure, modules, applications, and deployments","archived":false,"fork":false,"pushed_at":"2026-04-30T04:56:34.000Z","size":10164,"stargazers_count":4,"open_issues_count":4,"forks_count":3,"subscribers_count":0,"default_branch":"develop","last_synced_at":"2026-04-30T05:18:55.454Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/podverse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-01-23T23:03:00.000Z","updated_at":"2026-04-30T04:50:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/podverse/podverse","commit_stats":null,"previous_names":["podverse/podverse"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/podverse/podverse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podverse%2Fpodverse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podverse%2Fpodverse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podverse%2Fpodverse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podverse%2Fpodverse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/podverse","download_url":"https://codeload.github.com/podverse/podverse/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/podverse%2Fpodverse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32530176,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T01:12:54.858Z","status":"online","status_checked_at":"2026-05-02T02:00:05.923Z","response_time":132,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-01-25T19:17:24.023Z","updated_at":"2026-05-06T21:02:39.842Z","avatar_url":"https://github.com/podverse.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Podverse\n\nOpen source podcast app with Podcasting 2.0 support.\n\n## Features\n\n- **Value4Value / Lightning payments** - Support creators directly\n- **Chapters, transcripts, soundbites** - Enhanced podcast experience\n- **Cross-platform** - iOS, Android, F-Droid, Web\n- **Self-hostable** - Run your own instance\n\n## Quick Start\n\n**Prerequisites**: [Docker](https://docs.docker.com/get-docker/) and [Node.js 24 LTS](https://github.com/nvm-sh/nvm) (see root `.nvmrc`)\n\n```bash\n# 1. Clone and install\ngit clone https://github.com/podverse/podverse.git\ncd podverse \u0026\u0026 nvm use \u0026\u0026 npm install\n\n# 2. Prepare override files and add private values\nmake local_env_prepare\n\n# 3. Generate local env files, then start infrastructure and initialize database\nmake local_env_setup\nmake local_setup\n\n# 4. Build packages\nnpm run build:packages\n\n# 5. Run apps (in separate terminals)\nnpm run dev:api # http://localhost:3000\nnpm run dev:web # http://localhost:3002\n```\n\nSee [docs/QUICKSTART.md](docs/QUICKSTART.md) for detailed setup instructions, verification steps, and troubleshooting.\n\n## Directory Structure\n\n```\npackages/           # Publishable npm packages (@podverse/*)\n  helpers/          # Shared utilities, types, DTOs\n  external-services/  # Third-party integrations\n  orm/              # Database entities and services\n  notifications/    # Push notification services\n  parser/           # RSS/Podcast feed parsing\n  mq/               # Message queue operations\n\napps/               # Deployable applications\n  api/              # REST API (Express)\n  web/              # Web app (Next.js)\n  workers/          # Background job processors\n  management-api/   # Admin API\n  management-web/   # Admin dashboard\n\ntools/              # Development tools\n  qa/               # Test data generation\n  web-perf/         # Performance testing (Bundle Analyzer, Lighthouse)\n\ninfra/              # Infrastructure\n  config/           # Environment templates\n  database/         # Migrations and seeds\n  docker/           # Docker compose files\n  pipelines/        # Jenkins pipelines\n\nscripts/            # Utility scripts\ndocs/               # Documentation\nlogs/               # Log files (gitignored, see logs/LOGS.md)\n.llm/               # LLM context and history\n```\n\n## Development\n\n### Environment Configuration\n\nLocal development uses pre-configured environment files that work out of the box:\n\n- `apps/api/.env` - API configuration\n- `apps/web/.env.local` - Web configuration\n- `apps/management-web/.env.local` - Management web configuration\n- `infra/config/local/*.env` - Docker service configuration\n- `dev/env-overrides/local/*.env` - Local-only private/external overrides (created by `make local_env_prepare`)\n\nFor customization, see the ENV.md files in each app directory.\n\n### Docker\n\nBuild Docker images for local testing or deployment:\n\n```bash\nmake local_build_all          # Build all images\nmake local_test_docker_builds # Build and verify images\n```\n\nFor local infrastructure browsing, pgAdmin is available at `http://localhost:3050` after `make local_setup` or `make local_infra_up`.\n\n**Note**: The web apps (`web` and `management-web`) build once and read `NEXT_PUBLIC_*` values from a runtime-config sidecar:\n\n```bash\n# Build web app and sidecar\ndocker build -f apps/web/Dockerfile -t podverse-web:latest .\ndocker build -f apps/web/sidecar/Dockerfile -t podverse-web-runtime-config:latest .\n```\n\nProvide runtime env values to the sidecar at deploy time using `apps/web/env/` and `apps/management-web/env/`.\n\nSee [docs/QUICKSTART.md](docs/QUICKSTART.md#docker-images) for detailed Docker instructions.\n\n## Deployment\n\nDeployments are managed via Jenkins pipelines. See:\n\n- `infra/pipelines/` - Jenkins pipeline definitions\n- Individual app `README.md` files for app-specific deployment notes\n\n## Performance Testing\n\nPerformance testing tools are available in `tools/web-perf/`:\n\n- **Bundle Analyzer**: Analyze Next.js bundle sizes and visualize code splitting\n- **Lighthouse**: Automated performance testing with Playwright and Lighthouse\n\nSee [tools/web-perf/README.md](tools/web-perf/README.md) for detailed instructions.\n\n## Documentation\n\n- [Quick Start](docs/QUICKSTART.md) - Setup and running locally\n- [Architecture](docs/architecture/ARCHITECTURE.md) - System design and data flow\n- [V4V MetaBoost + LNURL](docs/v4v/V4V-METABOOST-LNURL.md) - Value-for-value boost flow and local setup\n- [Contributing](docs/development/CONTRIBUTING.md) - Development workflow and PR guidelines\n- [IDE Setup](docs/development/IDE-SETUP.md) - VS Code configuration and debugging\n\n## License\n\nAGPL-3.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpodverse%2Fpodverse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpodverse%2Fpodverse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpodverse%2Fpodverse/lists"}