2019-06-08 16:15:49 +02:00
|
|
|
import Config
|
2019-06-11 17:55:55 +02:00
|
|
|
|
2019-11-21 16:03:27 +01:00
|
|
|
config :pleroma, :instance, static_dir: "/var/lib/pleroma/static"
|
2019-06-14 00:38:32 +02:00
|
|
|
config :pleroma, Pleroma.Uploaders.Local, uploads: "/var/lib/pleroma/uploads"
|
2019-12-06 09:04:46 +01:00
|
|
|
config :pleroma, :modules, runtime_dir: "/var/lib/pleroma/modules"
|
2019-06-14 00:38:32 +02:00
|
|
|
|
2019-06-11 17:55:55 +02:00
|
|
|
config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs"
|
|
|
|
|
2020-01-18 14:55:33 +01:00
|
|
|
config :pleroma, release: true, config_path: config_path
|
|
|
|
|
2019-06-11 17:55:55 +02:00
|
|
|
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
|
2020-01-18 14:55:33 +01:00
|
|
|
|
2020-01-21 15:49:22 +01:00
|
|
|
exported_config =
|
|
|
|
config_path
|
|
|
|
|> Path.dirname()
|
|
|
|
|> Path.join("prod.exported_from_db.secret.exs")
|
2020-01-18 14:55:33 +01:00
|
|
|
|
|
|
|
if File.exists?(exported_config) do
|
|
|
|
import_config exported_config
|
|
|
|
end
|