chore: update config

This commit is contained in:
Zach Daniel 2023-09-26 11:52:36 -04:00
parent 7526e34880
commit 8099f31360
3 changed files with 6 additions and 5 deletions

View file

@ -18,13 +18,11 @@ config :ash_appsignal,
trace_types: [ trace_types: [
:custom, :custom,
:action, :action,
:custom_flow_step, :flow
:flow,
:query
] ]
{revision, _exitcode} = System.cmd("git", ["log", "--pretty=format:%h", "-n 1"]) {revision, _exitcode} = System.cmd("git", ["log", "--pretty=format:%h", "-n 1"])
config :appsignal, :config, revision: revision config :appsignal, :config, revision: "test-4"
config :ash_hq, config :ash_hq,
ash_apis: [ ash_apis: [

View file

@ -7,6 +7,8 @@ defmodule AshHq.Application do
@impl true @impl true
def start(_type, _args) do def start(_type, _args) do
Appsignal.Phoenix.LiveView.attach()
importer = importer =
if Application.get_env(:ash_hq, :periodic_imports) do if Application.get_env(:ash_hq, :periodic_imports) do
[ [

View file

@ -45,7 +45,8 @@ defmodule AshHq.MixProject do
{:ash_phoenix, github: "ash-project/ash_phoenix", override: true}, {:ash_phoenix, github: "ash-project/ash_phoenix", override: true},
{:ash_graphql, github: "ash-project/ash_graphql"}, {:ash_graphql, github: "ash-project/ash_graphql"},
{:ash_json_api, github: "ash-project/ash_json_api"}, {:ash_json_api, github: "ash-project/ash_json_api"},
{:ash_appsignal, "~> 0.1.0"}, # {:ash_appsignal, "~> 0.1.0"},
{:ash_appsignal, path: "../ash_appsignal"},
{:appsignal_phoenix, "~> 2.0"}, {:appsignal_phoenix, "~> 2.0"},
{:gun, "== 2.0.1", env: :prod, hex: "remedy_gun", override: true}, {:gun, "== 2.0.1", env: :prod, hex: "remedy_gun", override: true},
{:ash_authentication, "~> 3.10"}, {:ash_authentication, "~> 3.10"},