Skip to content

Commit fdb3be8

Browse files
committed
replace ___PUBLIC_DSN___ with example public key DSN
1 parent efe1f8d commit fdb3be8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ An example production config might look like this:
105105

106106
```elixir
107107
config :sentry,
108-
dsn: "___PUBLIC_DSN___",
108+
dsn: "https://[email protected]/1",
109109
environment_name: :prod,
110110
included_environments: [:prod],
111111
enable_source_code_context: true,
@@ -126,7 +126,7 @@ specific configuration like `config/prod.exs`.
126126
Alternatively, you could use Mix.env in your general configuration file:
127127

128128
```elixir
129-
config :sentry, dsn: "___PUBLIC_DSN___",
129+
config :sentry, dsn: "https://[email protected]/1",
130130
included_environments: [:prod],
131131
environment_name: Mix.env
132132
```
@@ -137,7 +137,7 @@ to handle this without adding an additional Mix environment, you can set an
137137
environment variable that determines the release level.
138138

139139
```elixir
140-
config :sentry, dsn: "___PUBLIC_DSN___",
140+
config :sentry, dsn: "https://[email protected]/1",
141141
included_environments: ~w(production staging),
142142
environment_name: System.get_env("RELEASE_LEVEL") || "development"
143143
```

0 commit comments

Comments
 (0)