This commit is contained in:
parent
c251e1dba3
commit
59f18e1fd2
12 changed files with 1163 additions and 6 deletions
|
|
@ -12,7 +12,10 @@ config :mv,
|
|||
generators: [timestamp_type: :utc_datetime]
|
||||
|
||||
# Backpex configuration
|
||||
config :backpex, :pubsub_server, Mv.PubSub
|
||||
config :backpex,
|
||||
pubsub_server: Mv.PubSub,
|
||||
translator_function: {MvWeb.CoreComponents, :translate_backpex},
|
||||
error_translator_function: {MvWeb.CoreComponents, :translate_error}
|
||||
|
||||
# Configures the endpoint
|
||||
config :mv, MvWeb.Endpoint,
|
||||
|
|
@ -25,6 +28,10 @@ config :mv, MvWeb.Endpoint,
|
|||
pubsub_server: Mv.PubSub,
|
||||
live_view: [signing_salt: "76NHxpwt"]
|
||||
|
||||
# Configures translation
|
||||
config :gettext, :locales, ["en", "de"]
|
||||
config :gettext, :default_locale, "de"
|
||||
|
||||
# Configures the mailer
|
||||
#
|
||||
# By default it uses the "Local" adapter which stores the emails
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue