Skip to content

Commit daf40ff

Browse files
committed
chore: update local Exceptionless urls to ex.dev.localhost 7111
1 parent d8bed43 commit daf40ff

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ instance. This is configured by setting the `serverUrl` on the default
223223
```js
224224
await Exceptionless.startup((c) => {
225225
c.apiKey = "API_KEY_HERE";
226-
c.serverUrl = "https://localhost:5100";
226+
c.serverUrl = "https://ex.dev.localhost:7111";
227227
});
228228
```
229229

example/browser/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ await Exceptionless.startup((c) => {
99
c.services.log = new TextAreaLogger("logs", c.services.log);
1010

1111
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest";
12-
c.serverUrl = "https://localhost:5100";
12+
c.serverUrl = "https://ex.dev.localhost:7111";
1313
c.updateSettingsWhenIdleInterval = 15000;
1414
c.usePersistedQueueStorage = true;
1515
c.setUserIdentity("12345678", "Blake");

example/express/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import express from "express";
33

44
await Exceptionless.startup((c) => {
55
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest";
6-
c.serverUrl = "https://localhost:5100";
6+
c.serverUrl = "https://ex.dev.localhost:7111";
77
c.useDebugLogger();
88
c.useLocalStorage();
99
c.usePersistedQueueStorage = true;

example/react/src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class App extends Component {
4949
async componentDidMount() {
5050
await Exceptionless.startup((c) => {
5151
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest";
52-
c.serverUrl = "https://localhost:5100";
52+
c.serverUrl = "https://ex.dev.localhost:7111";
5353
c.useDebugLogger();
5454

5555
c.defaultTags.push("Example", "React");

example/svelte-kit/src/hooks.client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Exceptionless, toError } from "@exceptionless/browser";
22

33
Exceptionless.startup((c) => {
44
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest";
5-
c.serverUrl = "https://localhost:5100";
5+
c.serverUrl = "https://ex.dev.localhost:7111";
66
c.useDebugLogger();
77

88
c.defaultTags.push("Example", "svelte-kit", "client");

example/svelte-kit/src/hooks.server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Exceptionless, toError } from "@exceptionless/node";
22

33
Exceptionless.startup((c) => {
44
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest";
5-
c.serverUrl = "https://localhost:5100";
5+
c.serverUrl = "https://ex.dev.localhost:7111";
66
c.useDebugLogger();
77

88
c.defaultTags.push("Example", "svelte-kit", "server");

example/vue/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Exceptionless.startup((c) => {
66
c.useDebugLogger();
77

88
c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271nTest";
9-
c.serverUrl = "https://localhost:5100";
9+
c.serverUrl = "https://ex.dev.localhost:7111";
1010
c.updateSettingsWhenIdleInterval = 15000;
1111
c.usePersistedQueueStorage = true;
1212
c.setUserIdentity("12345678", "Blake");

packages/core/test/ExceptionlessClient.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,24 +72,24 @@ describe("ExceptionlessClient", () => {
7272
test("should allow construction via a configuration object", () => {
7373
const client = new ExceptionlessClient();
7474
client.config.apiKey = "UNIT_TEST_API_KEY";
75-
client.config.serverUrl = "https://localhost:5100";
75+
client.config.serverUrl = "https://ex.dev.localhost:7111";
7676

7777
expect(client.config.apiKey).toBe("UNIT_TEST_API_KEY");
78-
expect(client.config.serverUrl).toBe("https://localhost:5100");
78+
expect(client.config.serverUrl).toBe("https://ex.dev.localhost:7111");
7979
});
8080

8181
test("should allow construction via a constructor", async () => {
8282
const client = new ExceptionlessClient();
8383

8484
await client.startup((c) => {
8585
c.apiKey = "UNIT_TEST_API_KEY";
86-
c.serverUrl = "https://localhost:5100";
86+
c.serverUrl = "https://ex.dev.localhost:7111";
8787
c.updateSettingsWhenIdleInterval = -1;
8888
});
8989

9090
await client.suspend();
9191
expect(client.config.apiKey).toBe("UNIT_TEST_API_KEY");
92-
expect(client.config.serverUrl).toBe("https://localhost:5100");
92+
expect(client.config.serverUrl).toBe("https://ex.dev.localhost:7111");
9393
});
9494

9595
test("should create session identifiers without Math.random", async () => {

0 commit comments

Comments
 (0)