ENG-9277: Add AI builder, Entreprise and hosting docs#6277
Conversation
Greptile SummaryThis PR adds a large set of new documentation pages (87 files, ~8,200 lines) covering three new areas of the Reflex platform: the AI Builder, Enterprise features, and Hosting. It also introduces a new GitHub Actions workflow ( Key changes:
Issues found:
Confidence Score: 4/5Safe to merge after fixing the auth_token secret reference in the GitHub Actions guide. One P1 issue: deploy-with-github-actions.md hard-codes secrets.REFLEX_PROJECT_ID for auth_token instead of secrets.REFLEX_AUTH_TOKEN. Any developer who follows the guide will produce a broken workflow. The remaining findings are P2 and do not block functionality. reflex/docs/hosting/deploy-with-github-actions.md (wrong secret name for auth_token) and reflex/docs/hosting/compute.md (name/math copy-paste errors) Important Files Changed
Sequence DiagramsequenceDiagram
participant GH as GitHub (push to main)
participant WF as deploy_docs.yml workflow
participant RW as reflex-web repo
participant UV as uv / Python env
participant RC as Reflex Cloud
GH->>WF: Push to main (reflex/docs/** changed)
WF->>WF: actions/checkout (this repo)
WF->>RW: actions/checkout reflex-dev/reflex-web
WF->>UV: astral-sh/setup-uv (Python 3.12)
UV->>RW: uv sync --locked --no-dev
UV->>UV: uv pip install . (local reflex with new docs)
UV->>UV: uv pip install reflex-hosting-cli -U
WF->>RC: reflex deploy --token PRD_TOKEN --config cloud-prod.yml
Reviews (1): Last reviewed commit: "revert that" | Re-trigger Greptile |
No description provided.