ash_phoenix/config/config.exs

19 lines
726 B
Elixir
Raw Normal View History

2022-05-14 12:45:54 +12:00
import Config
config :phoenix, :json_library, Jason
2023-07-13 17:46:07 +12:00
config :ash, :validate_api_resource_inclusion?, false
2023-07-14 00:48:53 +12:00
config :ash, :validate_api_config_inclusion?, false
2020-10-21 14:52:28 +13:00
if Mix.env() == :dev do
config :git_ops,
mix_project: AshPhoenix.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_phoenix",
# Instructs the tool to manage your mix version in your `mix.exs` file
# See below for more information
manage_mix_version?: true,
# Instructs the tool to manage the version in your README.md
# Pass in `true` to use `"README.md"` or a string to customize
2023-01-18 19:04:08 +13:00
manage_readme_version: "documentation/topics/working-with-phoenix.md",
2020-10-21 14:52:28 +13:00
version_tag_prefix: "v"
end