ENG-9585: Remove os templates#6592
Conversation
Greptile SummaryThis PR removes the open-source templates feature end-to-end: the docs gallery page, sidebar entry, individual template markdown files, gallery route generation,
Confidence Score: 4/5Safe to merge — the removal is consistent across docs, shared components, and the CLI prompt with all import chains properly updated. The only loose end is gallery_app_page.py, which is now unreachable code but causes no runtime error. All functional paths are cleanly removed. packages/reflex-site-shared/src/reflex_site_shared/templates/gallery_app_page.py — orphaned after apps.py deletion. Important Files Changed
Reviews (1): Last reviewed commit: "ENG-9585: Remove os templates" | Re-trigger Greptile |
FarhanAliRaza
left a comment
There was a problem hiding this comment.
packages/reflex-site-shared/.../templates/gallery_app_page.py
packages/reflex-site-shared/.../components/code_card.py
They become orphaned if that is intentional.
masenf
left a comment
There was a problem hiding this comment.
there's more code that needs to be removed here, about to push a commit
We don't need to enumerate templates for a release anymore, so this code can be removed.
FarhanAliRaza
left a comment
There was a problem hiding this comment.
There is no user of this constant.
in validate_and_create_app_using_remote_template
After simplification, template_url is always a non-None f-string on the only
non-raising path, so:
if template_url is None:
return
No description provided.