2019-10-03 11:12:57 +00:00
|
|
|
# Transfering the config to/from the database
|
|
|
|
|
2019-12-09 01:07:16 +00:00
|
|
|
{! backend/administration/CLI_tasks/general_cli_task_info.include !}
|
2019-10-03 11:12:57 +00:00
|
|
|
|
|
|
|
## Transfer config from file to DB.
|
|
|
|
|
2020-02-06 12:00:33 +00:00
|
|
|
!!! note
|
|
|
|
You need to add the following to your config before executing this command:
|
|
|
|
|
|
|
|
```elixir
|
|
|
|
config :pleroma, configurable_from_database: true
|
|
|
|
```
|
|
|
|
|
2020-08-15 06:49:12 +00:00
|
|
|
=== "OTP"
|
2019-10-03 11:12:57 +00:00
|
|
|
|
2020-08-15 06:49:12 +00:00
|
|
|
```sh
|
|
|
|
./bin/pleroma_ctl config migrate_to_db
|
|
|
|
```
|
|
|
|
|
|
|
|
=== "From Source"
|
2019-12-09 01:07:16 +00:00
|
|
|
|
2020-08-15 06:49:12 +00:00
|
|
|
```sh
|
|
|
|
mix pleroma.config migrate_to_db
|
|
|
|
```
|
2019-12-09 01:07:16 +00:00
|
|
|
|
2019-10-03 11:12:57 +00:00
|
|
|
## Transfer config from DB to `config/env.exported_from_db.secret.exs`
|
|
|
|
|
2020-02-06 12:00:33 +00:00
|
|
|
!!! note
|
|
|
|
In-Database configuration will still be applied after executing this command unless you set the following in your config:
|
|
|
|
|
|
|
|
```elixir
|
|
|
|
config :pleroma, configurable_from_database: false
|
|
|
|
```
|
|
|
|
|
2020-02-07 07:48:10 +00:00
|
|
|
To delete transfered settings from database optional flag `-d` can be used. `<env>` is `prod` by default.
|
2020-02-06 12:00:33 +00:00
|
|
|
|
2020-08-15 06:49:12 +00:00
|
|
|
=== "OTP"
|
|
|
|
```sh
|
|
|
|
./bin/pleroma_ctl config migrate_from_db [--env=<env>] [-d]
|
|
|
|
```
|
2019-12-09 01:07:16 +00:00
|
|
|
|
2020-08-15 06:49:12 +00:00
|
|
|
=== "From Source"
|
|
|
|
```sh
|
|
|
|
mix pleroma.config migrate_from_db [--env=<env>] [-d]
|
|
|
|
```
|