From 418dd60a80606153ffa5793e4c9279c5b9081af4 Mon Sep 17 00:00:00 2001 From: unclecode Date: Tue, 21 Oct 2025 11:03:51 +0800 Subject: [PATCH] docs(cnode): add direct GitHub raw URL install option - Users can install directly from GitHub without hosting - Added both crawl4ai.com and GitHub raw URL options - Clarified Method 2 is for development/contributors --- deploy/installer/USER_GUIDE.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/deploy/installer/USER_GUIDE.md b/deploy/installer/USER_GUIDE.md index 7fb6f905..f7bf4da6 100644 --- a/deploy/installer/USER_GUIDE.md +++ b/deploy/installer/USER_GUIDE.md @@ -72,25 +72,29 @@ That's it! Your server is running at **http://localhost:11235** 🎉 ### Method 1: Quick Install (Recommended) ```bash +# From crawl4ai.com (when hosted) curl -sSL https://crawl4ai.com/install-cnode.sh | bash + +# Or directly from GitHub +curl -sSL https://raw.githubusercontent.com/unclecode/crawl4ai/main/deploy/installer/install-cnode.sh | bash ``` -### Method 2: From GitHub +### Method 2: Clone Repository (For Development) ```bash # Clone the repository git clone https://github.com/unclecode/crawl4ai.git cd crawl4ai/deploy/installer -# Run local installer +# Run installer ./install-cnode.sh ``` ### Method 3: Custom Location ```bash -# Install to custom directory -INSTALL_DIR=$HOME/.local/bin curl -sSL https://crawl4ai.com/install-cnode.sh | bash +# Install to custom directory (using GitHub raw URL) +INSTALL_DIR=$HOME/.local/bin curl -sSL https://raw.githubusercontent.com/unclecode/crawl4ai/main/deploy/installer/install-cnode.sh | bash # Add to PATH export PATH="$HOME/.local/bin:$PATH"