Skip to content

Commit

Permalink
docs: provide info for EU endpoints (#1401)
Browse files Browse the repository at this point in the history
  • Loading branch information
subzero10 authored Oct 2, 2024
1 parent e895345 commit 4c4c4de
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/esbuild-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
<dt><code>endpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/source_maps")</dt>
<dd>Where to upload your source maps to. Perhaps you have a self hosted
source map server you would like to upload your source maps to instead
of Honeybadger.</dd>
of Honeybadger. If you are using our EU stack, you should set this to "https://eu-api.honeybadger.io/v1/source_maps".</dd>

<dt><code>revision</code> (optional &mdash; default: "main")</dt>
<dd>The deploy revision (i.e. commit hash) that your source map applies to. This could also be a code version. For best results, set it to something unique every time your code changes. <a href="https://docs.honeybadger.io/lib/javascript/guides/using-source-maps.html#versioning-your-project">See the Honeybadger docs for examples</a>.</dd>
Expand All @@ -53,7 +53,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
</dd>

<dt><code>deployEndpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/deploys")</dt>
<dd>Where to send deployment notifications.</dd>
<dd>Where to send deployment notifications. If you are using our EU stack, you should set this to "https://eu-api.honeybadger.io/v1/deploys".</dd>

<dt><code>deploy</code> (optional &mdash; default: false)</dt>
<dd>
Expand Down
4 changes: 2 additions & 2 deletions packages/rollup-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
<dt><code>endpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/source_maps")</dt>
<dd>Where to upload your source maps to. Perhaps you have a self hosted
source map server you would like to upload your source maps to instead
of Honeybadger.</dd>
of Honeybadger. If you are using our EU stack, this should be set to "https://eu-api.honeybadger.io/v1/source_maps".</dd>

<dt><code>revision</code> (optional &mdash; default: "main")</dt>
<dd>The deploy revision (i.e. commit hash) that your source map applies to. This could also be a code version. For best results, set it to something unique every time your code changes. <a href="https://docs.honeybadger.io/lib/javascript/guides/using-source-maps.html#versioning-your-project">See the Honeybadger docs for examples</a>.</dd>
Expand All @@ -55,7 +55,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
</dd>

<dt><code>deployEndpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/deploys")</dt>
<dd>Where to send deployment notifications.</dd>
<dd>Where to send deployment notifications. If you are using our EU stack, this should be set to "https://eu-api.honeybadger.io/v1/deploys".</dd>

<dt><code>deploy</code> (optional &mdash; default: false)</dt>
<dd>
Expand Down
5 changes: 4 additions & 1 deletion packages/webpack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
<dt><code>endpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/source_maps")</dt>
<dd>Where to upload your source maps to. Perhaps you have a self hosted
source map server you would like to upload your source maps to instead
of honeybadger.</dd>
of honeybadger. If you are using our EU stack, this should be set to "https://eu-api.honeybadger.io/v1/source_maps".</dd>

<dt><code>revision</code> (optional &mdash; default: "main")</dt>
<dd>The deploy revision (i.e. commit hash) that your source map applies to. This could also be a code version. For best results, set it to something unique every time your code changes. <a href="https://docs.honeybadger.io/lib/javascript/guides/using-source-maps.html#versioning-your-project">See the Honeybadger docs for examples.</a></dd>
Expand All @@ -61,6 +61,9 @@ These plugin parameters correspond to the Honeybadger [Source Map Upload API](ht
are being uploaded in parallel.</br>
Limited parallelism helps with connection issues in Docker environments.</dd>

<dt><code>deployEndpoint</code> (optional &mdash; default: "https://api.honeybadger.io/v1/deploys")</dt>
<dd>Where to send deployment notifications. If you are using our EU stack, this should be set to "https://eu-api.honeybadger.io/v1/deploys".</dd>

<dt><code>deploy</code> (optional &mdash; default: false)</dt>
<dd>
Configuration for deployment notifications. To disable deployment notifications, ignore this option. To enable deployment notifications, set this to <code>true</code>, or to an object containing any of these fields (see the <a href="https://docs.honeybadger.io/api/reporting-deployments/">API reference</a>):</br>
Expand Down

0 comments on commit 4c4c4de

Please sign in to comment.