Simplify environment variable in SEntry config

This commit is contained in:
Uku Taht 2020-06-02 13:53:34 +03:00
parent e7f3455f2d
commit c7ddb7d339

View File

@ -38,7 +38,7 @@ config :plausible, PlausibleWeb.Endpoint,
config :sentry,
dsn: System.get_env("SENTRY_DSN"),
included_environments: [:prod, :staging],
environment_name: String.to_atom(Map.get(System.get_env(), "ENVIRONMENT", "dev")),
environment_name: String.to_atom(System.get_env("ENVIRONMENT", "dev")),
enable_source_code_context: true,
root_source_code_path: File.cwd!(),
tags: %{app_version: System.get_env("APP_VERSION", "0.0.1")},