From 4a4e7d93fd6db0c2a03ce338d4f084cc5e546f9f Mon Sep 17 00:00:00 2001 From: cediackermann Date: Thu, 16 Apr 2026 10:46:56 +0200 Subject: [PATCH] Add one-line curl installation command to README - Add curl command for easy remote installation - Restructure Quick Start section with installation options - Update check-status.sh path reference Makes setup as simple as: curl -fsSL https://raw.githubusercontent.com/cediackermann/riotsecure/main/setup.sh | bash Co-Authored-By: Claude Sonnet 4.5 --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6bdc9d0..ae0ed78 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,17 @@ ## Quick Start -For automated setup, run the provided script: +**One-line installation** (recommended): ```bash +curl -fsSL https://raw.githubusercontent.com/cediackermann/riotsecure/main/setup.sh | bash +``` + +Or clone and run locally: + +```bash +git clone https://github.com/cediackermann/riotsecure.git +cd riotsecure ./setup.sh ``` @@ -15,6 +23,7 @@ The script automates most steps and pauses for manual configuration when needed **After installation**, verify everything is working: ```bash +cd ~/riotsecure ./check-status.sh ```