bonfire-app/flavours/cooperation/config/prod.exs

21 lines
676 B
Elixir
Raw Normal View History

2021-11-18 22:21:08 +00:00
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.
2022-09-12 04:34:14 +00:00
config :bonfire, Bonfire.Web.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json"
2021-11-18 22:21:08 +00:00
config :logger,
backends: [:console, Sentry.LoggerBackend]
# Do not print debug messages in production
config :logger, level: :info
config :bonfire, Bonfire.Web.Endpoint, server: true
2022-05-04 02:13:47 +00:00
config :bonfire, Bonfire.Common.Repo,
2022-09-12 04:34:14 +00:00
# in releases migrations are not in a flavour-specific directory
priv: "priv/repo"