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",
|
2021-11-26 11:43:43 +00:00
|
|
|
"bn",
|
2020-11-17 14:42:03 +00:00
|
|
|
"ca",
|
|
|
|
"cs",
|
2021-11-26 11:43:43 +00:00
|
|
|
"cy",
|
2020-11-17 14:42:03 +00:00
|
|
|
"de",
|
|
|
|
"en",
|
|
|
|
"es",
|
2021-11-26 11:43:43 +00:00
|
|
|
"fa",
|
2020-11-17 14:42:03 +00:00
|
|
|
"fi",
|
|
|
|
"fr",
|
2021-11-26 11:43:43 +00:00
|
|
|
"gd",
|
2020-11-17 14:42:03 +00:00
|
|
|
"gl",
|
2023-05-24 09:17:30 +00:00
|
|
|
"hr",
|
2020-11-17 14:42:03 +00:00
|
|
|
"hu",
|
2021-11-26 11:43:43 +00:00
|
|
|
"id",
|
2020-11-17 14:42:03 +00:00
|
|
|
"it",
|
|
|
|
"ja",
|
|
|
|
"nl",
|
|
|
|
"nn",
|
|
|
|
"pl",
|
|
|
|
"pt",
|
|
|
|
"ru",
|
2021-11-26 11:43:43 +00:00
|
|
|
"sv",
|
|
|
|
"zh_Hant"
|
2020-11-17 14:42:03 +00:00
|
|
|
]
|