Files
something-erlang/config/prod.exs

22 lines
766 B
Elixir
Raw Permalink Normal View History

2022-05-23 15:57:15 +02:00
import Config
# Note we also include the path to a cache manifest
# containing the digested version of static files. This
2024-06-02 13:31:19 +02:00
# manifest is generated by the `mix assets.deploy` task,
2022-05-23 15:57:15 +02:00
# which you should run after static files are built and
# before starting your production server.
2024-06-02 13:31:19 +02:00
config :something_erlang, SomethingErlangWeb.Endpoint,
cache_static_manifest: "priv/static/cache_manifest.json"
2023-01-18 16:13:51 +01:00
# Configures Swoosh API Client
config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: SomethingErlang.Finch
2022-05-23 15:57:15 +02:00
2024-06-02 13:31:19 +02:00
# Disable Swoosh Local Memory Storage
config :swoosh, local: false
2022-05-23 15:57:15 +02:00
# Do not print debug messages in production
config :logger, level: :info
2023-01-18 16:13:51 +01:00
# Runtime production configuration, including reading
# of environment variables, is done on config/runtime.exs.