diff options
| author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-07-11 13:26:59 +0700 |
|---|---|---|
| committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-07-11 13:26:59 +0700 |
| commit | 182f7bbb1170c44eac4ab4a9efa4ff0bff991c98 (patch) | |
| tree | f4c6fe46e82f667be49c8e6aad0ed3b418e4332f /config/releases.exs | |
| parent | ddd4a09b72ede65345ddf45a68eb239b54eda86c (diff) | |
| parent | 4016341a77337e3b71295d27808eebc05152b086 (diff) | |
| download | pleroma-182f7bbb1170c44eac4ab4a9efa4ff0bff991c98.tar.gz pleroma-182f7bbb1170c44eac4ab4a9efa4ff0bff991c98.zip | |
Merge branch 'develop' into feature/addressable-lists
Diffstat (limited to 'config/releases.exs')
| -rw-r--r-- | config/releases.exs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config/releases.exs b/config/releases.exs new file mode 100644 index 000000000..98c5ceccd --- /dev/null +++ b/config/releases.exs @@ -0,0 +1,19 @@ +import Config + +config :pleroma, :instance, static_dir: "/var/lib/pleroma/static" +config :pleroma, Pleroma.Uploaders.Local, uploads: "/var/lib/pleroma/uploads" + +config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs" + +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 |
