ash_postgres/config/config.exs

37 lines
1.2 KiB
Elixir
Raw Normal View History

2022-05-14 19:01:14 +12:00
import Config
2020-06-01 17:36:43 +12:00
config :ash, :use_all_identities_in_manage_relationship?, false
2020-06-03 15:29:11 +12:00
if Mix.env() == :dev do
config :git_ops,
mix_project: AshPostgres.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_postgres",
# 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-02-06 06:42:16 +13:00
manage_readme_version: ["README.md", "documentation/tutorials/get-started-with-postgres.md"],
2020-06-03 15:29:11 +12:00
version_tag_prefix: "v"
end
2020-09-03 20:18:11 +12:00
if Mix.env() == :test do
config :ash_postgres, AshPostgres.TestRepo,
username: "postgres",
database: "ash_postgres_test",
2020-09-03 20:18:11 +12:00
hostname: "localhost",
pool: Ecto.Adapters.SQL.Sandbox
# sobelow_skip ["Config.Secrets"]
config :ash_postgres, AshPostgres.TestRepo, password: "postgres"
config :ash_postgres,
ecto_repos: [AshPostgres.TestRepo],
ash_apis: [AshPostgres.Test.Api, AshPostgres.MultitenancyTest.Api]
2020-09-03 20:18:11 +12:00
config :ash_postgres, AshPostgres.TestRepo, migration_primary_key: [name: :id, type: :binary_id]
config :logger, level: :warn
end