diff options
author | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-11-24 18:44:48 +0300 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-12-22 21:08:44 +0100 |
commit | 897b62091bd9f5ee9a98a49defd2b6591fb53fc7 (patch) | |
tree | 81dea17c39b0541541433ffba587234f92fdebe6 /config | |
parent | c26583c99e7d30167f1e976bb5b247ef4b648be4 (diff) | |
download | pleroma-897b62091bd9f5ee9a98a49defd2b6591fb53fc7.tar.gz |
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 |