ash_graphql/config/config.exs

19 lines
626 B
Elixir
Raw Normal View History

import Config
2020-08-14 10:58:03 +12:00
config :ash, :utc_datetime_type, :datetime
2022-09-28 19:37:16 +13:00
config :ash, :disable_async?, true
2020-08-14 10:58:03 +12:00
if Mix.env() == :dev do
config :git_ops,
mix_project: AshGraphql.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_graphql",
# 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
manage_readme_version: "README.md",
version_tag_prefix: "v"
end