Skip to content

Commit b4f468b

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/setup-node-6.4.0
2 parents 66e741c + 0f00ddd commit b4f468b

11 files changed

Lines changed: 51 additions & 42 deletions

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: sumitake

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Private security report
4-
url: https://github.com/sumitake/Remote-SSH-Tunnel/security/advisories/new
4+
url: https://github.com/sumitake/VSC-RemoteSSH/security/advisories/new
55
about: Report vulnerabilities privately.
66
- name: VS Code Remote Tunnels documentation
77
url: https://code.visualstudio.com/docs/remote/tunnels#_using-the-code-cli

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All notable changes to this project are documented here. The format follows
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- Updated repository branding, links, clone instructions, and service checkout paths for VSC-RemoteSSH.
12+
913
## [0.1.0] - 2026-07-11
1014

1115
### Added
@@ -16,5 +20,5 @@ All notable changes to this project are documented here. The format follows
1620
- Isolated CC-BY-4.0 interface fixtures and third-party attribution.
1721
- Matrix CI, CodeQL, Gitleaks, Dependabot, repository validation, and public contribution files.
1822

19-
[Unreleased]: https://github.com/sumitake/Remote-SSH-Tunnel/compare/v0.1.0...HEAD
20-
[0.1.0]: https://github.com/sumitake/Remote-SSH-Tunnel/releases/tag/v0.1.0
23+
[Unreleased]: https://github.com/sumitake/VSC-RemoteSSH/compare/v0.1.0...HEAD
24+
[0.1.0]: https://github.com/sumitake/VSC-RemoteSSH/releases/tag/v0.1.0

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# Remote-SSH-Tunnel
1+
# VSC-RemoteSSH
22

3-
[![CI](https://github.com/sumitake/Remote-SSH-Tunnel/actions/workflows/ci.yml/badge.svg)](https://github.com/sumitake/Remote-SSH-Tunnel/actions/workflows/ci.yml)
4-
[![CodeQL](https://github.com/sumitake/Remote-SSH-Tunnel/actions/workflows/codeql.yml/badge.svg)](https://github.com/sumitake/Remote-SSH-Tunnel/actions/workflows/codeql.yml)
5-
[![Secret Scan](https://github.com/sumitake/Remote-SSH-Tunnel/actions/workflows/secret-scan.yml/badge.svg)](https://github.com/sumitake/Remote-SSH-Tunnel/actions/workflows/secret-scan.yml)
3+
[![CI](https://github.com/sumitake/VSC-RemoteSSH/actions/workflows/ci.yml/badge.svg)](https://github.com/sumitake/VSC-RemoteSSH/actions/workflows/ci.yml)
4+
[![CodeQL](https://github.com/sumitake/VSC-RemoteSSH/actions/workflows/codeql.yml/badge.svg)](https://github.com/sumitake/VSC-RemoteSSH/actions/workflows/codeql.yml)
5+
[![Secret Scan](https://github.com/sumitake/VSC-RemoteSSH/actions/workflows/secret-scan.yml/badge.svg)](https://github.com/sumitake/VSC-RemoteSSH/actions/workflows/secret-scan.yml)
6+
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
67

78
A headless, self-recovering client bridge for an existing Visual Studio Code
89
Remote Tunnel. It combines a loopback-only Microsoft dev-tunnels relay with a
@@ -186,8 +187,8 @@ host's service remains active after a reboot before deploying the client relay.
186187
## 2. Install the client tools
187188

188189
```bash
189-
git clone https://github.com/sumitake/Remote-SSH-Tunnel.git
190-
cd Remote-SSH-Tunnel
190+
git clone https://github.com/sumitake/VSC-RemoteSSH.git
191+
cd VSC-RemoteSSH
191192

192193
npm ci
193194
python3 -m venv .venv
@@ -279,7 +280,7 @@ attached to a terminal.
279280
## 5. Run the client relay as a service
280281

281282
The [systemd user template](deploy/systemd/user/remote-ssh-tunnel-relay.service)
282-
assumes this repository is at `~/Remote-SSH-Tunnel` and configuration is at
283+
assumes this repository is at `~/VSC-RemoteSSH` and configuration is at
283284
`~/.config/remote-ssh-tunnel/relay.env`:
284285

285286
```bash

deploy/launchd/com.remote-ssh-tunnel.relay.plist.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<key>ProgramArguments</key>
99
<array>
1010
<string>/usr/local/bin/node</string>
11-
<string>/Users/CHANGE_ME/Remote-SSH-Tunnel/bin/remote-ssh-tunnel-relay.js</string>
11+
<string>/Users/CHANGE_ME/VSC-RemoteSSH/bin/remote-ssh-tunnel-relay.js</string>
1212
</array>
1313

1414
<key>EnvironmentVariables</key>

deploy/systemd/user/remote-ssh-tunnel-relay.service

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[Unit]
22
Description=Loopback-only VS Code remote tunnel relay
3-
Documentation=https://github.com/sumitake/Remote-SSH-Tunnel
3+
Documentation=https://github.com/sumitake/VSC-RemoteSSH
44
Wants=network-online.target
55
After=network-online.target
66
StartLimitIntervalSec=300
77
StartLimitBurst=5
88

99
[Service]
1010
Type=simple
11-
WorkingDirectory=%h/Remote-SSH-Tunnel
11+
WorkingDirectory=%h/VSC-RemoteSSH
1212
Environment=PATH=/usr/local/bin:/usr/bin:/bin
1313
EnvironmentFile=%h/.config/remote-ssh-tunnel/relay.env
14-
ExecStart=/usr/bin/env node %h/Remote-SSH-Tunnel/bin/remote-ssh-tunnel-relay.js
14+
ExecStart=/usr/bin/env node %h/VSC-RemoteSSH/bin/remote-ssh-tunnel-relay.js
1515
Restart=on-failure
1616
RestartSec=15s
1717
TimeoutStopSec=30s

docs/architecture-and-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Architecture and Operations
22

3-
This page is the detailed production reference for Remote-SSH-Tunnel. The root
3+
This page is the detailed production reference for VSC-RemoteSSH. The root
44
README remains the deployment quick start.
55

66
## Responsibility boundaries

package-lock.json

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"uuid": "11.1.1"
2727
},
2828
"devDependencies": {
29-
"markdownlint-cli2": "0.23.0"
29+
"markdownlint-cli2": "0.23.2"
3030
}
3131
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ remote-ssh-tunnel-rpc = "remote_ssh_tunnel.cli:main"
1818
[project.optional-dependencies]
1919
dev = [
2020
"pytest==9.1.1",
21-
"ruff==0.15.21",
21+
"ruff==0.16.4",
2222
]
2323

2424
[tool.setuptools.packages.find]

0 commit comments

Comments
 (0)