From 6113f62ad23daf86a04f6d38ebe52b55ddfc3527 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Sat, 11 Jul 2026 00:07:56 +0100 Subject: [PATCH] README: add explicit curl download command before install --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1184028..748d454 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,17 @@ app.nextwks.eu :443 auth.nextwks.eu :443 ## Quick Start (Bare VM) ```bash -curl -sL https://git.lohmar.co.uk/lexton-it/NextWks/raw/branch/main/tools/nextwks.sh \ - | sudo bash -s -- --install +# Download the script to your home folder +curl -o ~/nextwks.sh https://git.lohmar.co.uk/lexton-it/NextWks/raw/branch/main/tools/nextwks.sh +chmod +x ~/nextwks.sh + +# Run the installer +sudo bash ~/nextwks.sh --install ``` Prompts for domain, TLS email, and admin credentials. Installs deps (Go, Podman, git), clones repo to `/tmp/nextwks-build/`, builds binary, generates configs, deploys stack. +The script stays in `~/nextwks.sh` for future updates. ## Directory Layout @@ -61,10 +66,6 @@ clones repo to `/tmp/nextwks-build/`, builds binary, generates configs, deploys ## Operations ```bash -# First-time install (download + run — saves itself to ~/nextwks.sh) -curl -sL https://git.lohmar.co.uk/lexton-it/NextWks/raw/branch/main/tools/nextwks.sh \ - | sudo bash -s -- --install - # Smart update (pull, build, copy, restart) sudo bash ~/nextwks.sh --update