ash_cubdb/config/config.exs

17 lines
448 B
Elixir
Raw Permalink Normal View History

2023-08-07 15:13:01 +12:00
import Config
config :git_ops,
mix_project: Mix.Project.get!(),
changelog_file: "CHANGELOG.md",
2024-02-05 16:00:21 +13:00
repository_url: "https://harton.dev/james/ash_cubdb",
2023-08-07 15:13:01 +12:00
manage_mix_version?: true,
version_tag_prefix: "v",
manage_readme_version: "README.md"
2023-08-07 17:47:06 +12:00
if Mix.env() in ~w[dev test]a do
2024-03-28 10:27:46 +13:00
config :ash_cubdb, ash_domains: [Support.Domain]
2023-10-02 15:27:02 +13:00
config :ash_cubdb, debug_data_layer_capabilities?: true
config :spark, :formatter, remove_parens?: true
2023-08-07 17:47:06 +12:00
end