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

21 lines
676 B
Elixir
Raw Normal View History

2020-11-28 11:12:32 +00:00
import Config
2020-08-05 07:39:59 +00:00
2021-06-03 11:24:50 +00:00
# We include the path to a cache manifest
2020-08-05 07:39:59 +00:00
# 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"
2020-08-05 07:39:59 +00:00
2021-07-27 07:31:58 +00:00
config :logger,
backends: [:console, Sentry.LoggerBackend]
2020-08-05 07:39:59 +00:00
# Do not print debug messages in production
config :logger, level: :info
2021-06-03 11:24:50 +00:00
config :bonfire, Bonfire.Web.Endpoint, server: true
2021-06-17 14:19:13 +00:00
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"