2019-10-05 17:07:50 +00:00
|
|
|
import Config
|
2017-12-08 08:58:14 +00:00
|
|
|
|
2020-01-26 20:36:50 +00:00
|
|
|
config :mobilizon, Mobilizon.Web.Endpoint,
|
2019-10-23 14:24:24 +00:00
|
|
|
http: [
|
2020-01-30 19:27:25 +00:00
|
|
|
port: 4000
|
2019-10-23 14:24:24 +00:00
|
|
|
],
|
2018-11-07 15:25:17 +00:00
|
|
|
url: [
|
2020-01-30 19:27:25 +00:00
|
|
|
host: "mobilizon.local",
|
|
|
|
scheme: "https",
|
|
|
|
port: 443
|
|
|
|
]
|
2018-07-04 12:29:17 +00:00
|
|
|
|
2017-12-08 08:58:14 +00:00
|
|
|
# Do not print debug messages in production
|
2020-01-30 19:27:25 +00:00
|
|
|
config :logger, level: :info
|
2017-12-08 08:58:14 +00:00
|
|
|
|
2020-11-17 14:42:03 +00:00
|
|
|
# Load all locales in production
|
|
|
|
config :mobilizon, :cldr,
|
|
|
|
locales: [
|
|
|
|
"ar",
|
|
|
|
"be",
|
|
|
|
"ca",
|
|
|
|
"cs",
|
|
|
|
"de",
|
|
|
|
"en",
|
|
|
|
"es",
|
|
|
|
"fi",
|
|
|
|
"fr",
|
|
|
|
"gl",
|
|
|
|
"hu",
|
|
|
|
"it",
|
|
|
|
"ja",
|
|
|
|
"nl",
|
|
|
|
"nn",
|
|
|
|
"oc",
|
|
|
|
"pl",
|
|
|
|
"pt",
|
|
|
|
"ru",
|
|
|
|
"sv"
|
|
|
|
]
|
|
|
|
|
2020-01-30 19:27:25 +00:00
|
|
|
cond do
|
|
|
|
System.get_env("INSTANCE_CONFIG") &&
|
|
|
|
File.exists?("./config/#{System.get_env("INSTANCE_CONFIG")}") ->
|
|
|
|
import_config System.get_env("INSTANCE_CONFIG")
|
2019-03-12 10:52:28 +00:00
|
|
|
|
2020-01-30 19:27:25 +00:00
|
|
|
true ->
|
2021-02-06 15:49:34 +00:00
|
|
|
:ok
|
2020-01-30 19:27:25 +00:00
|
|
|
end
|