From 5b5f54bd4308860853a933c27052c2b21687b50b Mon Sep 17 00:00:00 2001 From: jullang Date: Fri, 1 May 2026 17:05:23 +0200 Subject: [PATCH 1/2] Add link/note to opendal's backend documentation I could currently not find any information on, or link to, what options are available for which backend. This adds the best one I could find, and hopefully makes future searches faster :) --- config/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/README.md b/config/README.md index d8aafd17a..2b538cf97 100644 --- a/config/README.md +++ b/config/README.md @@ -156,7 +156,11 @@ e.g. `use-password = "true"` becomes `RUSTIC_REPO_OPT_USE_PASSWORD=true`. Moreover, for opendal parameters (which need to be in lower snake case), you can use upper snake case and prefix with "OPENDAL_" as env variable, e.g. -`application_key = "my-key"` becomes `OPENDAL_APPLICATION_KEY=my-key`. +`application_key = "my-key"` becomes `OPENDAL_APPLICATION_KEY=my-key`. A list +of available parameters for a backend can be found in [opendal's documentation](https://opendal.apache.org/docs/rust/opendal/services/index.html) +under the respective backend's struct. + +See the respective backends entry for a list of it's options. | Attribute | Description | Default Value | Example Value | | ------------------- | ------------------------------------------------------------------ | ------------- | ------------------------------ | From b8cb6d7597416470ffafc157e1a1fde4a5f5b0c1 Mon Sep 17 00:00:00 2001 From: jullang Date: Fri, 1 May 2026 17:14:18 +0200 Subject: [PATCH 2/2] squash-me: re-apply unsaved changes --- config/README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/config/README.md b/config/README.md index 2b538cf97..19e39a467 100644 --- a/config/README.md +++ b/config/README.md @@ -156,11 +156,8 @@ e.g. `use-password = "true"` becomes `RUSTIC_REPO_OPT_USE_PASSWORD=true`. Moreover, for opendal parameters (which need to be in lower snake case), you can use upper snake case and prefix with "OPENDAL_" as env variable, e.g. -`application_key = "my-key"` becomes `OPENDAL_APPLICATION_KEY=my-key`. A list -of available parameters for a backend can be found in [opendal's documentation](https://opendal.apache.org/docs/rust/opendal/services/index.html) -under the respective backend's struct. - -See the respective backends entry for a list of it's options. +`application_key = "my-key"` becomes `OPENDAL_APPLICATION_KEY=my-key`. +A list of available parameters for a backend can be found in [opendal's documentation](https://opendal.apache.org/docs/rust/opendal/services/index.html) under the respective backend's struct. | Attribute | Description | Default Value | Example Value | | ------------------- | ------------------------------------------------------------------ | ------------- | ------------------------------ |