summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-11-25 17:51:31 -0600
committerMark Felder <feld@FreeBSD.org>2020-12-02 10:43:22 -0600
commit2e87378051e311c85926adfae4290189747d0bc2 (patch)
treebf321f429da98845b4bc9aaedc85961865101ca5 /docs
parentada073f2511ae57eb22dc9e8a4220b2382b9f97c (diff)
Add the delete and reset instructions
Diffstat (limited to 'docs')
-rw-r--r--docs/administration/CLI_tasks/config.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/administration/CLI_tasks/config.md b/docs/administration/CLI_tasks/config.md
index 1eb3c7437..3572b5915 100644
--- a/docs/administration/CLI_tasks/config.md
+++ b/docs/administration/CLI_tasks/config.md
@@ -87,3 +87,35 @@ e.g., this shows all the settings under `:instance`
```sh
mix pleroma.config dump instance
```
+
+## Delete the saved configuration values for a specific group
+
+e.g., this deletes all the settings under `:instance`
+
+=== "OTP"
+
+ ```sh
+ ./bin/pleroma_ctl config groupdel instance
+ ```
+
+=== "From Source"
+
+ ```sh
+ mix pleroma.config groupdel instance
+ ```
+
+## Remove all settings from the database
+
+This forcibly removes all saved values in the database.
+
+=== "OTP"
+
+ ```sh
+ ./bin/pleroma_ctl config reset
+ ```
+
+=== "From Source"
+
+ ```sh
+ mix pleroma.config reset
+ ```