Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Move manual directly to cloudflare instead of local server #433

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

HLeithner
Copy link
Member

@HLeithner HLeithner commented Mar 14, 2025

User description

Since the manual is anyway behind cloudflare the logical step is to move the static site directly to cloudflare pages.

This also solves #385


PR Type

Enhancement, Configuration changes


Description

  • Migrated manual deployment from local server to Cloudflare Pages.

  • Updated .drone.yml to use wrangler for deployment.

  • Added wrangler dependency to package.json.


Changes walkthrough 📝

Relevant files
Configuration changes
.drone.yml
Updated deployment pipeline to use Cloudflare Pages           

.drone.yml

  • Removed SSH-based deployment commands.
  • Added wrangler command for deploying to Cloudflare Pages.
  • Adjusted deployment logic to align with Cloudflare Pages.
  • +1/-9     
    Dependencies
    package.json
    Added `wrangler` dependency for Cloudflare Pages                 

    package.json

  • Added wrangler as a new dependency.
  • Updated dependencies to support Cloudflare Pages deployment.
  • +2/-1     

    Need help?
  • Type /help how to ... in the comments thread for any questions about Qodo Merge usage.
  • Check out the documentation for more information.
  • Copy link
    Contributor

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    🎫 Ticket compliance analysis ✅

    385 - PR Code Verified

    Compliant requirements:

    • Fix 404 errors and timeouts occurring when accessing direct links
    • Fix the "Forbidden" error (403) that appears when selecting a URL and pressing return

    Requires further human verification:

    • Verify that the back button now correctly reloads previously good pages
    • Confirm that links work properly whether accessed from the side menu or directly
    • Test various links in the Get Started / Git section to ensure they all work correctly

    ⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
    🧪 No relevant tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    PR Preview URLs

    The PR preview URL generation still references the old domain structure. This may need to be updated to match the new Cloudflare Pages deployment pattern.

    - if [ ! -z "$${DRONE_PULL_REQUEST}" ]; then /bin/add_github_status.sh "Preview" "Generated preview for this pull request" "http://pr-$${DRONE_PULL_REQUEST}.manual.joomlacode.org" ; fi;

    Copy link
    Contributor

    qodo-merge-pro bot commented Mar 14, 2025

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Impact
    Possible issue
    Update preview URL
    Suggestion Impact:The commit addressed the issue by updating the GitHub status URL, but instead of hardcoding the Cloudflare Pages URL pattern as suggested, it dynamically extracts the preview URL from the Cloudflare deployment output

    code diff:

    -      - node_modules/.bin/wrangler pages deploy ./build --project-name manual
    +      - node_modules/.bin/wrangler pages deploy ./build --project-name manual | tee /tmp/output.log
    +      - export PREVIEW_URL=`grep alias /tmp/output.log | awk '{ print $5 }'`
           - chmod +x test.sh
    -      - if [ ! -z "$${DRONE_PULL_REQUEST}" ]; then /bin/add_github_status.sh "Preview" "Generated preview for this pull request" "http://pr-$${DRONE_PULL_REQUEST}.manual.joomlacode.org" ; fi;
    +      - if [ ! -z "$${DRONE_PULL_REQUEST}" ]; then /bin/add_github_status.sh "Preview" "Generated preview for this pull request" "$${PREVIEW_URL}" ; fi;

    The GitHub status URL still points to the old domain
    (pr-XX.manual.joomlacode.org) but the deployment has been moved to Cloudflare
    Pages. Update the URL to match the new Cloudflare Pages URL pattern.

    .drone.yml [29-31]

     - node_modules/.bin/wrangler pages deploy ./build --project-name manual
     - chmod +x test.sh
    -- if [ ! -z "$${DRONE_PULL_REQUEST}" ]; then /bin/add_github_status.sh "Preview" "Generated preview for this pull request" "http://pr-$${DRONE_PULL_REQUEST}.manual.joomlacode.org" ; fi;
    +- if [ ! -z "$${DRONE_PULL_REQUEST}" ]; then /bin/add_github_status.sh "Preview" "Generated preview for this pull request" "https://pr-$${DRONE_PULL_REQUEST}.manual.pages.dev" ; fi;

    [Suggestion has been applied]

    Suggestion importance[1-10]: 9

    __

    Why: This suggestion correctly identifies a critical inconsistency in the PR. While the deployment method has been changed from SSH to Cloudflare Pages, the GitHub status URL still references the old domain. Updating to the Cloudflare Pages URL pattern is essential for proper functionality of the preview links.

    High
    • Update

    # for free to join this conversation on GitHub. Already have an account? # to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant