3572b59155b3ae2f3d5b5f5be52e9dc26b78d9df
[akkoma] / docs / administration / CLI_tasks / config.md
1 # Transfering the config to/from the database
2
3 {! backend/administration/CLI_tasks/general_cli_task_info.include !}
4
5 ## Transfer config from file to DB.
6
7 !!! note
8 You need to add the following to your config before executing this command:
9
10 ```elixir
11 config :pleroma, configurable_from_database: true
12 ```
13
14 === "OTP"
15
16 ```sh
17 ./bin/pleroma_ctl config migrate_to_db
18 ```
19
20 === "From Source"
21
22 ```sh
23 mix pleroma.config migrate_to_db
24 ```
25
26 ## Transfer config from DB to `config/env.exported_from_db.secret.exs`
27
28 !!! note
29 In-Database configuration will still be applied after executing this command unless you set the following in your config:
30
31 ```elixir
32 config :pleroma, configurable_from_database: false
33 ```
34
35 To delete transferred settings from database optional flag `-d` can be used. `<env>` is `prod` by default.
36
37 === "OTP"
38 ```sh
39 ./bin/pleroma_ctl config migrate_from_db [--env=<env>] [-d]
40 ```
41
42 === "From Source"
43 ```sh
44 mix pleroma.config migrate_from_db [--env=<env>] [-d]
45 ```
46
47 ## Dump all of the config settings defined in the database
48
49 === "OTP"
50
51 ```sh
52 ./bin/pleroma_ctl config dump
53 ```
54
55 === "From Source"
56
57 ```sh
58 mix pleroma.config dump
59 ```
60
61 ## List individual configuration groups in the database
62
63 === "OTP"
64
65 ```sh
66 ./bin/pleroma_ctl config groups
67 ```
68
69 === "From Source"
70
71 ```sh
72 mix pleroma.config groups
73 ```
74
75 ## Dump the saved configuration values for a specific group
76
77 e.g., this shows all the settings under `:instance`
78
79 === "OTP"
80
81 ```sh
82 ./bin/pleroma_ctl config dump instance
83 ```
84
85 === "From Source"
86
87 ```sh
88 mix pleroma.config dump instance
89 ```
90
91 ## Delete the saved configuration values for a specific group
92
93 e.g., this deletes all the settings under `:instance`
94
95 === "OTP"
96
97 ```sh
98 ./bin/pleroma_ctl config groupdel instance
99 ```
100
101 === "From Source"
102
103 ```sh
104 mix pleroma.config groupdel instance
105 ```
106
107 ## Remove all settings from the database
108
109 This forcibly removes all saved values in the database.
110
111 === "OTP"
112
113 ```sh
114 ./bin/pleroma_ctl config reset
115 ```
116
117 === "From Source"
118
119 ```sh
120 mix pleroma.config reset
121 ```