bonfire-app/flavours/cooperation/config/prod.exs
Mayel de Borniol 0ef85e77f9 auto-format
2022-09-12 16:34:14 +12:00

21 lines
676 B
Elixir

import Config
# We include the path to a cache manifest
# containing the digested version of static files. This
# manifest is generated by the `mix phx.digest` task,
# which you should run after static files are built and
# before starting your production server.
config :bonfire, Bonfire.Web.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
config :logger,
backends: [:console, Sentry.LoggerBackend]
# Do not print debug messages in production
config :logger, level: :info
config :bonfire, Bonfire.Web.Endpoint, server: true
config :bonfire, Bonfire.Common.Repo,
# in releases migrations are not in a flavour-specific directory
priv: "priv/repo"