refactor

2025-09-10 10:53:19 -05:00
parent 94b59e775f
commit 9a434f71b0
3 changed files with 8 additions and 0 deletions

1
.cspell/words.txt Normal file

@@ -0,0 +1 @@
renterd

1
.gitignore vendored Normal file

@@ -0,0 +1 @@
cspell.json

@@ -1,6 +1,7 @@
# ⚙ CLI Usage # ⚙ CLI Usage
## 📦 Providers ## 📦 Providers
Repertory supports multiple storage backends, each defined at mount time: Repertory supports multiple storage backends, each defined at mount time:
| Option | Description | | Option | Description |
@@ -49,26 +50,31 @@ Repertory supports multiple storage backends, each defined at mount time:
## 🚀 Examples ## 🚀 Examples
### Mount Sia ### Mount Sia
```bash ```bash
repertory --name my_sia_mount /mnt/sia repertory --name my_sia_mount /mnt/sia
``` ```
### Mount S3 ### Mount S3
```bash ```bash
repertory --s3 --name my_s3_bucket /mnt/s3 repertory --s3 --name my_s3_bucket /mnt/s3
``` ```
### Mount with Transparent Encryption ### Mount with Transparent Encryption
```bash ```bash
repertory --encrypt --name secure_data /mnt/secure repertory --encrypt --name secure_data /mnt/secure
``` ```
### Check Provider Version (renterd) ### Check Provider Version (renterd)
```bash ```bash
repertory --check_version repertory --check_version
``` ```
### Launch Embedded GUI Only ### Launch Embedded GUI Only
```bash ```bash
repertory --ui --launch_only repertory --ui --launch_only
``` ```