Scaffold clearinghouse example repo consuming builder-sdk v0.4.1#21
Draft
eliteprox wants to merge 1 commit into
Draft
Scaffold clearinghouse example repo consuming builder-sdk v0.4.1#21eliteprox wants to merge 1 commit into
eliteprox wants to merge 1 commit into
Conversation
Initializes the clearinghouse example as a pnpm/TypeScript package with build (tsc), lint (eslint), and test (vitest) wiring plus a CI workflow mirroring builder-sdk's conventions. Adds @pymthouse/builder-sdk@^0.4.1 as a dependency with a trivial signer/webhook subpath import to prove it resolves, and a minimal HTTP server with a /healthz endpoint as the base for the upcoming /authorize webhook route. The README documents the single-package, configuration-driven hosted/on-prem packaging decision and frames the repo's relationship to builder-sdk, pymthouse PR #133, and auth0-livepeer PR #1. Closes #1
7 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
clearinghouseas a pnpm/TypeScript package depending on@pymthouse/builder-sdk@^0.4.1(pinned to the GA0.4.1release, not an-rc).tsc), lint (eslint), typecheck, and test (vitest) scripts plus a CI workflow (.github/workflows/ci.yml) mirroring builder-sdk's conventions (pnpm, Node 22/24 matrix, lint → typecheck → test → build).src/index.tsHTTP server (GET /healthz) that importscreateRemoteSignerAuthorizeHandlerfrom@pymthouse/builder-sdk/signer/webhook— proving the subpath export resolves and compiles end to end. The/authorizeroute itself is a follow-up issue.pymthouse/builder-sdk,pymthousePR #133, andauth0-livepeerPR Scaffold clearinghouse example repo consuming builder-sdk v0.4.1 #1.LICENSE(MIT, matching builder-sdk/go-livepeer) andCHANGELOG_PENDING.md(referenced by the existing PR template checklist).Test plan
pnpm install— resolves cleanly,@pymthouse/builder-sdk@0.4.1installedpnpm lint— passespnpm typecheck— passespnpm test— 2/2 passingpnpm build— emitsdist/node dist/index.js— servesGET /healthz→{"status":"ok"}, 404 on unknown routesCloses #1