mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 20:13:31 +03:00
ad12e1ef31
* Move Endpoint errors setup to common config * Implement naive Sentry link resolver * Implement error report e-mail * Delete static sentry script * Implement user feedback form on server errors * Re-arrange pipe * Use Sentry.Config.dsn() where applicable * Fix typo * Use Map.replace/3
36 lines
864 B
Elixir
36 lines
864 B
Elixir
import Config
|
|
|
|
config :plausible, PlausibleWeb.Endpoint,
|
|
server: true,
|
|
debug_errors: true,
|
|
code_reloader: true,
|
|
check_origin: false,
|
|
watchers: [
|
|
node: [
|
|
"node_modules/webpack/bin/webpack.js",
|
|
"--mode",
|
|
"development",
|
|
"--watch",
|
|
"--watch-options-stdin",
|
|
cd: Path.expand("../assets", __DIR__)
|
|
],
|
|
npm: [
|
|
"run",
|
|
"deploy",
|
|
cd: Path.expand("../tracker", __DIR__)
|
|
]
|
|
],
|
|
live_reload: [
|
|
patterns: [
|
|
~r{priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$},
|
|
~r{lib/plausible_web/views/.*(ex)$},
|
|
~r{lib/plausible_web/templates/.*(eex)$},
|
|
~r{lib/plausible_web/controllers/.*(ex)$},
|
|
~r{lib/plausible_web/plugs/.*(ex)$}
|
|
]
|
|
]
|
|
|
|
config :logger, :console, format: "[$level] $message\n"
|
|
config :phoenix, :stacktrace_depth, 20
|
|
config :phoenix, :plug_init_mode, :runtime
|