Refactor worker into spec-driven server architecture#10
Open
arielpollack wants to merge 5 commits into
Open
Conversation
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
This PR refactors
md.pagefrom a single-file Worker into a spec-driven server architecture while preserving the existing public behavior and Cloudflare Worker runtime.The main goals were:
AGENTS.mdguide so future contributors and agents can navigate the codebase quicklyWhat Changed
Architecture
src/index.tsimplementation with a thin Worker entrypointsrc/app.tsto assemble the applicationsrc/server/src/routes/api-routes.tssrc/routes/page-routes.tssrc/routes/static-routes.tssrc/services/src/domain/src/presentation/Spec-driven docs
Added a small spec set under
docs/spec/covering:Also added
AGENTS.mdwith a code map and instructions for future contributors/agents.Dev workflow
wrangler.tomlsobun devandwrangler devwork with the refactored entrypointREADME.mdandCONTRIBUTING.mdto reference the new architecture and docsBehavior / Compatibility
This refactor intentionally preserves the existing public contract, including:
POST /api/publishPOST /api/eventGET /:idGET /og/:id.pngVerification
npm run typechecknpm testAll tests passed after the refactor.
Notes
This PR is mostly architectural and documentation-focused. It should make future feature work much easier without changing the product surface area.