Skip to content

Commit 9782d17

Browse files
committed
chore: update all examples to use port 3030
1 parent 42f0b56 commit 9782d17

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dotnet/inbound/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"commandName": "Project",
1414
"dotnetRunMessages": true,
1515
"launchBrowser": true,
16-
"applicationUrl": "http://localhost:5176",
16+
"applicationUrl": "http://localhost:3030",
1717
"environmentVariables": {
1818
"ASPNETCORE_ENVIRONMENT": "Development"
1919
}

dotnet/inbound/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ dotnet run
4040
Run the Hookdeck localtunnel using the Hookdeck CLI:
4141

4242
```sh
43-
hookdeck listen 5176 inbound-dotnet
43+
hookdeck listen 3030 inbound-dotnet
4444
```

go/inbound/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func main() {
7676

7777
port := os.Getenv("PORT")
7878
if port == "" {
79-
port = "3032"
79+
port = "3030"
8080
}
8181

8282
fmt.Printf("🪝 Server running at http://localhost:%s", port)

python/inbound/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ def handle(path):
5353

5454

5555
if __name__ == "__main__":
56-
app.run(debug=True, port=3031)
56+
app.run(debug=True, port=3030)

0 commit comments

Comments
 (0)