This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
bdfr-browser/config/config.exs

17 lines
359 B
Elixir
Raw Normal View History

2023-05-17 22:13:55 +00:00
import Config
2023-08-13 23:18:55 +00:00
config :bdfr_browser,
ecto_repos: [BdfrBrowser.Repo]
config :bdfr_browser, BdfrBrowser.Repo,
migration_primary_key: [name: :id, type: :string],
migration_foreign_key: [column: :id, type: :string]
2023-05-17 22:13:55 +00:00
config :logger,
backends: [],
2023-08-13 23:18:55 +00:00
level: :info,
2023-05-17 22:13:55 +00:00
handle_otp_reports: false,
handle_sasl_reports: false
2023-08-13 23:18:55 +00:00
import_config "#{Mix.env()}.exs"