From b39437860fde7c75cd09a73724461577e7ea4e90 Mon Sep 17 00:00:00 2001 From: Damir Vandic Date: Fri, 25 Oct 2024 12:10:50 +0200 Subject: [PATCH] Use config_env() instead of Mix.env() --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index effd4cc7..4dbd358f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Sentry has a range of configuration options, but most applications will have a c # config/config.exs config :sentry, dsn: "https://public_key@app.getsentry.com/1", - environment_name: Mix.env(), + environment_name: config_env(), enable_source_code_context: true, root_source_code_paths: [File.cwd!()] ```