Add the delete and reset instructions
This commit is contained in:
parent
ada073f251
commit
2e87378051
|
@ -87,3 +87,35 @@ e.g., this shows all the settings under `:instance`
|
||||||
```sh
|
```sh
|
||||||
mix pleroma.config dump instance
|
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
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue