ash_admin/config/config.exs

81 lines
2.4 KiB
Elixir
Raw Normal View History

import Config
2020-12-04 16:19:28 +13:00
2020-12-08 19:22:24 +13:00
pg_url = System.get_env("PG_URL") || "postgres:postgres@127.0.0.1"
pg_database = System.get_env("PG_DATABASE") || "ash_admin_dev"
Application.put_env(:ash_admin, Demo.Repo, url: "ecto://#{pg_url}/#{pg_database}")
2020-12-04 16:19:28 +13:00
config :phoenix, :json_library, Jason
2020-12-08 19:22:24 +13:00
config :ash_admin, ecto_repos: [Demo.Repo]
config :ash, :use_all_identities_in_manage_relationship?, false
2020-12-08 19:22:24 +13:00
config :ash_admin, DemoWeb.Endpoint,
url: [host: "localhost"],
secret_key_base: "Hu4qQN3iKzTV4fJxhorPQlA/osH9fAMtbtjVS58PFgfw3ja5Z18Q/WSNR9wP4OfW",
live_view: [signing_salt: "hMegieSe"],
http: [port: System.get_env("PORT") || 4000],
debug_errors: true,
check_origin: false,
pubsub_server: Demo.PubSub,
server: true
2020-12-08 19:22:24 +13:00
# Configure esbuild (the version is required)
config :esbuild,
version: "0.17.11",
default: [
args:
~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*),
cd: Path.expand("../assets", __DIR__),
env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)}
]
# Configure tailwind (the version is required)
config :tailwind,
version: "3.3.2",
default: [
args: ~w(
--config=tailwind.config.js
--input=css/app.css
--output=../priv/static/assets/app.css
),
cd: Path.expand("../assets", __DIR__)
]
2020-12-08 19:22:24 +13:00
config :logger, level: :debug
config :phoenix, :serve_endpoints, true
2021-03-22 19:42:18 +13:00
2022-05-26 04:17:52 +12:00
if config_env() == :dev do
config :ash_admin,
ash_apis: [
Demo.Accounts.Api,
Demo.Tickets.Api
]
2021-03-22 19:42:18 +13:00
config :git_ops,
mix_project: AshAdmin.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_admin",
# 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
2022-05-26 04:17:52 +12:00
if config_env() == :test do
config :ash_admin, AshAdmin.Test.Endpoint,
url: [host: "localhost"],
debug_errors: true,
secret_key_base: "Hu4qQN3iKzTV4fJxhorPQlA/osH9fAMtbtjVS58PFgfw3ja5Z18Q/WSNR9wP4OfW",
live_view: [signing_salt: "hMegieSe"],
pubsub_server: AshAdmin.Test.PubSub
config :ash, :disable_async?, true
config :ash_admin,
ash_apis: [
AshAdmin.Test.Api
]
end