refactor: from astro to vite+preact & radically simple#877
Merged
gildesmarais merged 25 commits intofeat/revamp-frontendfrom Mar 14, 2026
Merged
refactor: from astro to vite+preact & radically simple#877gildesmarais merged 25 commits intofeat/revamp-frontendfrom
gildesmarais merged 25 commits intofeat/revamp-frontendfrom
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.
This pull request updates project documentation and developer tooling to reflect the migration of the frontend from Astro to Preact (built with Vite), and introduces improvements to the API feed creation boundary and CI workflow. The changes modernize the stack, clarify documentation, and strengthen type safety and API contract boundaries.
Frontend migration and documentation updates:
.github/copilot-instructions.mdandREADME.mdfrom Astro to Preact and Vite, including architecture descriptions, dev server instructions, and documentation links. [1] [2] [3] [4] [5] [6] [7]Continuous Integration and developer tooling:
npm run typecheck) to the CI workflow and Makefile, ensuring type safety for the Preact frontend. [1] [2]check-frontendandquick-checkMakefile targets for streamlined local and CI checks, and improved thereadytarget to include these checks. [1] [2]API feed creation boundary improvements:
app/api/v1/feeds/create_feed.rbto clarify and simplify the API boundary: removed redundant comments, introducedFEED_ATTRIBUTE_KEYSfor explicit response shaping, and factored out feed metadata normalization into dedicated private methods. [1] [2] [3] [4] [5] [6] [7] [8]extract_site_titlelogic to the API edge (feeds.rb) and updated it to useHtml2rss::Urldirectly for improved encapsulation. [1] [2] [3]Other improvements:
These changes collectively modernize the stack, improve developer experience, and clarify the API and documentation.