ash_hq/config/config.exs

100 lines
2.9 KiB
Elixir
Raw Normal View History

2022-03-21 17:43:24 +13:00
# This file is responsible for configuring your application
# and its dependencies with the aid of the Config module.
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
# General application configuration
import Config
config :ash_hq,
ecto_repos: [AshHq.Repo]
2022-04-05 18:20:36 +12:00
config :ash, allow_flow: true
config :ash_hq,
ash_apis: [AshHq.Blog, AshHq.Docs, AshHq.Accounts, AshHq.MailingList, AshHq.Discord]
2022-03-26 10:17:01 +13:00
config :ash_hq, AshHq.Repo,
timeout: :timer.minutes(10),
ownership_timeout: :timer.minutes(10)
config :spark, :formatter,
remove_parens?: true,
"Ash.Resource": [
type: Ash.Resource,
section_order: [
:authentication,
:token,
:attributes,
:relationships,
:policies,
:postgres
]
],
"Ash.Flow": []
2022-03-21 17:43:24 +13:00
# Configures the endpoint
config :ash_hq, AshHqWeb.Endpoint,
url: [host: "localhost"],
render_errors: [view: AshHqWeb.ErrorView, accepts: ~w(html json), layout: false],
pubsub_server: AshHq.PubSub,
live_view: [signing_salt: "U1/3L4jI"]
# Configures the mailer
#
# By default it uses the "Local" adapter which stores the emails
# locally. You can see the emails in your browser, at "/dev/mailbox".
#
# For production it's recommended to configure a different adapter
# at the `config/runtime.exs`.
config :ash_hq, AshHq.Mailer, adapter: Swoosh.Adapters.Local
config :ash_hq, AshHq.MailingList.Mailer, adapter: Swoosh.Adapters.Local
2022-12-21 20:25:09 +13:00
config :ash_hq, AshHqWeb.Tails, colors_file: Path.join(File.cwd!(), "assets/tailwind.colors.json")
2022-03-21 17:43:24 +13:00
config :ash, :use_all_identities_in_manage_relationship?, false
2022-03-21 17:43:24 +13:00
# Swoosh API client is needed for adapters other than SMTP.
config :swoosh, :api_client, false
2022-12-21 20:25:09 +13:00
config :sunflower_ui, :tails, AshHqWeb.Tails
2022-03-21 17:43:24 +13:00
config :surface, :components, [
{AshHqWeb.Components.TreeView.Item, propagate_context_to_slots: true},
{AshHqWeb.Components.TreeView, propagate_context_to_slots: true}
]
2022-03-21 17:43:24 +13:00
# Configure esbuild (the version is required)
config :esbuild,
version: "0.14.0",
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__)}
]
# Configures Elixir's Logger
config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
# Use Jason for JSON parsing in Phoenix
config :phoenix, :json_library, Jason
config :plug_content_security_policy,
nonces_for: [:script_src],
directives: %{
2022-08-07 15:25:01 +12:00
img_src: ~w('self' data:image/svg+xml),
2022-08-07 14:23:17 +12:00
default_src: ~w('none'),
connect_src: ~w('self'),
child_src: ~w('self'),
script_src: ~w('self'),
2022-08-07 15:25:01 +12:00
style_src: ~w('self'),
frame_src: ~w('self'),
worker_src: ~w('self')
}
2022-08-23 15:02:53 +12:00
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{config_env()}.exs"