-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauto_install.sh
More file actions
executable file
·30 lines (26 loc) · 1.16 KB
/
auto_install.sh
File metadata and controls
executable file
·30 lines (26 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash
# =============================================================================
# Enhanced Ralph Auto-Installer for Claude Code
# =============================================================================
# This script is designed to be executed by Claude Code when a user provides
# the one-link installation URL.
# =============================================================================
set -e
# --- Step 1: Clone the Repository ---
echo "Cloning the Enhanced Ralph repository..."
git clone https://github.com/kimhons/enhanced-ralph-claude-code.git /home/ubuntu/enhanced-ralph-claude-code
# --- Step 2: Run the Installer ---
echo "Running the installation script..."
cd /home/ubuntu/enhanced-ralph-claude-code
sudo ./install.sh
# --- Step 3: Confirmation ---
echo ""
echo "==============================================================="
echo " Enhanced Ralph has been successfully installed!"
echo "==============================================================="
echo ""
echo "You can now use the following commands to get started:"
echo ""
echo " ralph init my-new-app (for new projects)"
echo " ralph fix (for existing projects)"
echo ""