31 lines
1.1 KiB
Elixir
31 lines
1.1 KiB
Elixir
import Config
|
|
|
|
# Note we also include the path to a cache manifest
|
|
# containing the digested version of static files. This
|
|
# manifest is generated by the `mix assets.deploy` task,
|
|
# which you should run after static files are built and
|
|
# before starting your production server.
|
|
config :mv, MvWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
|
|
|
|
# Configures Swoosh API Client
|
|
config :swoosh, api_client: Swoosh.ApiClient.Req
|
|
|
|
# Disable Swoosh Local Memory Storage
|
|
config :swoosh, local: false
|
|
|
|
# Do not print debug messages in production
|
|
config :logger, level: :info
|
|
|
|
# AshAuthentication production configuration
|
|
# These must be set at compile-time (not in runtime.exs) because
|
|
# Application.compile_env!/3 is used in lib/accounts/user.ex
|
|
config :mv, :session_identifier, :jti
|
|
|
|
config :mv, :require_token_presence_for_authentication, true
|
|
|
|
# Token signing secret - using a placeholder that MUST be overridden
|
|
# at runtime via environment variable in config/runtime.exs
|
|
config :mv, :token_signing_secret, "REPLACE_ME_AT_RUNTIME"
|
|
|
|
# Runtime production configuration, including reading
|
|
# of environment variables, is done on config/runtime.exs.
|