diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-11-24 18:44:48 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-11-25 14:10:24 +0300 |
commit | 5eef4988bf968e12329e6e4ee89beccee19a66ce (patch) | |
tree | e2469b41bebfe85af1eab2f183f731d9c1a33ea6 /config | |
parent | 1ab61953db36929517ce5a153cc18d4f65127a5a (diff) | |
download | pleroma-5eef4988bf968e12329e6e4ee89beccee19a66ce.tar.gz pleroma-5eef4988bf968e12329e6e4ee89beccee19a66ce.zip |
fix for elixir 1.11
load runtime configs in releases with config provider
Diffstat (limited to 'config')
-rw-r--r-- | config/releases.exs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/config/releases.exs b/config/releases.exs deleted file mode 100644 index 19636765f..000000000 --- a/config/releases.exs +++ /dev/null @@ -1,31 +0,0 @@ -import Config - -config :pleroma, :instance, static_dir: "/var/lib/pleroma/static" -config :pleroma, Pleroma.Uploaders.Local, uploads: "/var/lib/pleroma/uploads" -config :pleroma, :modules, runtime_dir: "/var/lib/pleroma/modules" - -config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs" - -config :pleroma, release: true, config_path: config_path - -if File.exists?(config_path) do - import_config config_path -else - warning = [ - IO.ANSI.red(), - IO.ANSI.bright(), - "!!! #{config_path} not found! Please ensure it exists and that PLEROMA_CONFIG_PATH is unset or points to an existing file", - IO.ANSI.reset() - ] - - IO.puts(warning) -end - -exported_config = - config_path - |> Path.dirname() - |> Path.join("prod.exported_from_db.secret.exs") - -if File.exists?(exported_config) do - import_config exported_config -end |