Skip to content

Commit 5d2c460

Browse files
Merge pull request #2 from LorcanChinnock/chore/rename-to-devtunnel-proxy
chore: rename project to devtunnel-proxy
2 parents 88e418a + 2dc7582 commit 5d2c460

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
dotnet-version: 10.0.x
1616

1717
- name: Restore
18-
run: dotnet restore aspire-tunnel-proxy.sln
18+
run: dotnet restore devtunnel-proxy.sln
1919

2020
- name: Build
21-
run: dotnet build aspire-tunnel-proxy.sln --configuration Release --no-restore
21+
run: dotnet build devtunnel-proxy.sln --configuration Release --no-restore
2222

2323
- name: Test
24-
run: dotnet test aspire-tunnel-proxy.sln --configuration Release --no-build --verbosity normal
24+
run: dotnet test devtunnel-proxy.sln --configuration Release --no-build --verbosity normal

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# aspire-tunnel-proxy
1+
# devtunnel-proxy
22

3-
[![CI](https://github.com/LorcanChinnock/aspire-tunnel-proxy/actions/workflows/ci.yml/badge.svg)](https://github.com/LorcanChinnock/aspire-tunnel-proxy/actions/workflows/ci.yml)
3+
[![CI](https://github.com/LorcanChinnock/devtunnel-proxy/actions/workflows/ci.yml/badge.svg)](https://github.com/LorcanChinnock/devtunnel-proxy/actions/workflows/ci.yml)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
55
[![.NET 10](https://img.shields.io/badge/.NET-10.0-512BD4.svg)](https://dotnet.microsoft.com/download/dotnet/10.0)
66

@@ -15,8 +15,8 @@ You need a public HTTPS URL that points at something running on your laptop —
1515
## Quickstart
1616

1717
```bash
18-
git clone https://github.com/LorcanChinnock/aspire-tunnel-proxy.git
19-
cd aspire-tunnel-proxy
18+
git clone https://github.com/LorcanChinnock/devtunnel-proxy.git
19+
cd devtunnel-proxy
2020
dotnet run --project src/AppHost
2121
```
2222

@@ -155,7 +155,7 @@ YARP routes/clusters fully follow the upstream schema — see [YARP config files
155155

156156
Set `DevTunnel:AnonymousAccess: false` in `src/AppHost/appsettings.json` for a private tunnel. Recipients then need a Microsoft/GitHub login the owner has authorised, or an `X-Tunnel-Authorization` token from `devtunnel token`. Note: private tunnels block cross-origin browser callers — `fetch()` from a deployed SPA on another origin can't complete the interactive sign-in.
157157

158-
To report a vulnerability privately, please open a [GitHub security advisory](https://github.com/LorcanChinnock/aspire-tunnel-proxy/security/advisories/new) rather than a public issue.
158+
To report a vulnerability privately, please open a [GitHub security advisory](https://github.com/LorcanChinnock/devtunnel-proxy/security/advisories/new) rather than a public issue.
159159

160160
## Project layout
161161

src/AppHost/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}
88
},
99
"DevTunnel": {
10-
"Id": "aspire-tunnel-proxy",
10+
"Id": "devtunnel-proxy",
1111
"AnonymousAccess": true
1212
}
1313
}

0 commit comments

Comments
 (0)