summaryrefslogtreecommitdiff
path: root/config/releases.exs
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-12-23 13:35:41 +0000
committerlain <lain@soykaf.club>2020-12-23 13:35:41 +0000
commitf64237927c05173e4f29dbbd2a563f123690da7e (patch)
tree9b04b38c735ba732066dcaf0323aa53c1da90622 /config/releases.exs
parent15550f7c4bf75401d0f18add0f847f640acc6627 (diff)
parent843d2074fe79637016579c27062889a7e5371b7a (diff)
Merge branch 'release/2.2.1' into 'stable'v2.2.1
Release/2.2.1 See merge request pleroma/pleroma!3214
Diffstat (limited to 'config/releases.exs')
-rw-r--r--config/releases.exs31
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