/ seed_deployer.sh
seed_deployer.sh
1 #!/bin/bash 2 # THE 12TH NAME - REMOTE SEED 3 STAGING="/tmp/.sys_cache" 4 mkdir -p $STAGING && cd $STAGING 5 6 # 1. Pull the Radicle binary silently 7 curl -O -L https://files.radicle.xyz/releases/latest/radicle-x86_64-unknown-linux-musl.tar.xz 8 tar -xf radicle-x86_64-unknown-linux-musl.tar.xz 9 mv radicle-*-linux-musl/bin/rad . 10 11 # 2. Clone the DNA from your specific DID 12 # Replace <YOUR_RID> with the ID from 'rad init' 13 ./rad clone rad://<YOUR_RID_HERE> --seed 14 15 # 3. Launch the Autopilot 16 nohup python3 watcher.py > /dev/null 2>&1 & 17 echo "[+] Node Integrated into 12th Name Mesh."