diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-07-09 11:17:43 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-07-09 11:17:43 +0300 |
commit | 4cbafcef0c3a0ce9ddf888b558c6691afb96ad94 (patch) | |
tree | eaaf634770beeff8d304f560b89ce59733e62925 /lib/mix/pleroma.ex | |
parent | b28cc154596ad9cbf5ef9708a5967672c61ddbdc (diff) | |
download | pleroma-4cbafcef0c3a0ce9ddf888b558c6691afb96ad94.tar.gz pleroma-4cbafcef0c3a0ce9ddf888b558c6691afb96ad94.zip |
load default config in mix tasks
Diffstat (limited to 'lib/mix/pleroma.ex')
-rw-r--r-- | lib/mix/pleroma.ex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/mix/pleroma.ex b/lib/mix/pleroma.ex index 0fbb6f1cd..de16cc52c 100644 --- a/lib/mix/pleroma.ex +++ b/lib/mix/pleroma.ex @@ -7,6 +7,7 @@ defmodule Mix.Pleroma do @cachex_childs ["object", "user"] @doc "Common functions to be reused in mix tasks" def start_pleroma do + Pleroma.Config.Holder.save_default() Application.put_env(:phoenix, :serve_endpoints, false, persistent: true) if Pleroma.Config.get(:env) != :test do |