ash_hq/config/config.exs

115 lines
3 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,
2024-01-13 06:43:25 +13:00
ecto_repos: [AshHq.Repo]
2022-03-21 17:43:24 +13:00
2022-04-05 18:20:36 +12:00
config :ash, allow_flow: true
2023-09-21 03:05:02 +12:00
config :ash, :tracer, [AshAppsignal]
2023-09-13 06:04:03 +12:00
config :ash_appsignal,
trace_types: [
:custom,
:action,
2023-09-27 04:52:36 +13:00
:flow
2023-09-13 06:04:03 +12:00
]
2023-09-13 07:11:29 +12:00
{revision, _exitcode} = System.cmd("git", ["log", "--pretty=format:%h", "-n 1"])
2023-09-27 04:52:36 +13:00
config :appsignal, :config, revision: "test-4"
2023-09-13 07:11:29 +12:00
config :ash_hq,
ash_apis: [
2023-10-02 06:41:23 +13:00
AshHq.Accounts,
AshHq.Blog,
AshHq.Docs,
2023-10-02 06:41:23 +13:00
AshHq.Github,
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.Registry": [],
"Ash.Resource": [
type: Ash.Resource,
section_order: [
:actions,
:authentication,
:oban,
: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
# 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
# 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"