Merge branch 'develop' into feld-2168-media-preview-proxy
[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 transfered 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 ```