From 9a434f71b0f639cc304d5faa9d6d63d6a0f5ffda Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 10 Sep 2025 10:53:19 -0500 Subject: [PATCH] refactor --- .cspell/words.txt | 1 + .gitignore | 1 + CLI-Usage.md | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 .cspell/words.txt create mode 100644 .gitignore diff --git a/.cspell/words.txt b/.cspell/words.txt new file mode 100644 index 0000000..b152974 --- /dev/null +++ b/.cspell/words.txt @@ -0,0 +1 @@ +renterd \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5c5d70c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +cspell.json diff --git a/CLI-Usage.md b/CLI-Usage.md index 68ae6a5..2a4d870 100644 --- a/CLI-Usage.md +++ b/CLI-Usage.md @@ -1,6 +1,7 @@ # ⚙ CLI Usage ## 📦 Providers + Repertory supports multiple storage backends, each defined at mount time: | Option | Description | @@ -49,26 +50,31 @@ Repertory supports multiple storage backends, each defined at mount time: ## 🚀 Examples ### Mount Sia + ```bash repertory --name my_sia_mount /mnt/sia ``` ### Mount S3 + ```bash repertory --s3 --name my_s3_bucket /mnt/s3 ``` ### Mount with Transparent Encryption + ```bash repertory --encrypt --name secure_data /mnt/secure ``` ### Check Provider Version (renterd) + ```bash repertory --check_version ``` ### Launch Embedded GUI Only + ```bash repertory --ui --launch_only ```