ash_phoenix/config/config.exs
Zach Daniel d5a485e068 fix: fix case where "lists" weren't properly added to
test: add unit tests for `add_to_path/3`
2021-06-13 20:23:14 -04:00

16 lines
586 B
Elixir

use Mix.Config
config :phoenix, :json_library, Jason
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
manage_readme_version: "README.md",
version_tag_prefix: "v"
end