From 72c1a928070cad34f1bd591d847824c58b360595 Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Wed, 4 Dec 2024 16:26:28 +0900 Subject: [PATCH] chore: fixed formatting --- .cspell.json | 4 ++-- package.json | 2 +- src/proxy.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.cspell.json b/.cspell.json index 9bdbe5c..0055e31 100644 --- a/.cspell.json +++ b/.cspell.json @@ -23,8 +23,8 @@ "ghijklmnopqrstuvwxyz", "GHIJKLMNOPQRSTUVWXYZ", "ubiquityos", - "azurefunc", - "marplex" + "azurefunc", + "marplex" ], "dictionaries": ["typescript", "node", "software-terms"], "import": ["@cspell/dict-typescript/cspell-ext.json", "@cspell/dict-node/cspell-ext.json", "@cspell/dict-software-terms"], diff --git a/package.json b/package.json index 207e725..4838150 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "setup-kv": "bun --env-file=.dev.vars scripts/setup-kv-namespace.ts", "setup": "tsx ./scripts/setup.ts", "start:azure": "run-p proxy build:watch start", - "start": "func start", + "start": "func start --port 8787", "prestart": "bun run build", "build": "tsup", "build:watch": "tsup --watch", diff --git a/src/proxy.ts b/src/proxy.ts index 0a18854..67de927 100644 --- a/src/proxy.ts +++ b/src/proxy.ts @@ -4,7 +4,7 @@ dotenv.config({ path: ".dev.vars" }); const smee = new SmeeClient({ source: process.env.WEBHOOK_PROXY_URL || "https://smee.io/new", - target: "http://localhost:7071", + target: "http://localhost:8787", logger: console, });