Skip to content

Commit 4024931

Browse files
Sbussisoclaude
andcommitted
Fix CloudNode repo URL across all files
The actual GitHub repo is opensentry-cloud-node, not OpenSentry-CloudNode. Fixed all 8 references in install scripts, frontend pages, footer, and contributing docs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0410561 commit 4024931

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ OpenSentry has two main components:
1313
| Component | Language | Repository |
1414
|-----------|----------|------------|
1515
| **Command Center** | Python (FastAPI) + React | [OpenSentry-Command](https://github.com/SourceBox-LLC/OpenSentry-Command) |
16-
| **CloudNode** | Rust | [OpenSentry-CloudNode](https://github.com/SourceBox-LLC/OpenSentry-CloudNode) |
16+
| **CloudNode** | Rust | [OpenSentry-CloudNode](https://github.com/SourceBox-LLC/opensentry-cloud-node) |
1717

1818
## How to Contribute
1919

@@ -44,12 +44,12 @@ npm run dev # http://localhost:5173
4444
### CloudNode
4545

4646
```bash
47-
cd OpenSentry-CloudNode
47+
cd opensentry-cloud-node
4848
cargo build --release
4949
./target/release/opensentry-cloudnode setup
5050
```
5151

52-
See the [CloudNode README](https://github.com/SourceBox-LLC/OpenSentry-CloudNode) for full setup instructions.
52+
See the [CloudNode README](https://github.com/SourceBox-LLC/opensentry-cloud-node) for full setup instructions.
5353

5454
## Project Structure
5555

backend/scripts/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
$ErrorActionPreference = "Stop"
55

6-
$Repo = "SourceBox-LLC/OpenSentry-CloudNode"
6+
$Repo = "SourceBox-LLC/opensentry-cloud-node"
77
$InstallDir = if ($env:OPENSENTRY_INSTALL_DIR) { $env:OPENSENTRY_INSTALL_DIR } else { "$env:LOCALAPPDATA\OpenSentry" }
88

99
Write-Host ""

backend/scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ DIM='\033[2m'
1313
BOLD='\033[1m'
1414
NC='\033[0m'
1515

16-
REPO="SourceBox-LLC/OpenSentry-CloudNode"
16+
REPO="SourceBox-LLC/opensentry-cloud-node"
1717
INSTALL_DIR="${OPENSENTRY_INSTALL_DIR:-$HOME/.opensentry}"
1818

1919
# ── Banner ──────────────────────────────────────────────────────────

frontend/src/components/LandingFooter.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function LandingFooter() {
2828
<a href="https://github.com/SourceBox-LLC/OpenSentry-Command" target="_blank" rel="noopener noreferrer">
2929
Command Center
3030
</a>
31-
<a href="https://github.com/SourceBox-LLC/OpenSentry-CloudNode" target="_blank" rel="noopener noreferrer">
31+
<a href="https://github.com/SourceBox-LLC/opensentry-cloud-node" target="_blank" rel="noopener noreferrer">
3232
CloudNode
3333
</a>
3434
<a href="https://github.com/SourceBox-LLC" target="_blank" rel="noopener noreferrer">

frontend/src/pages/DocsPage.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ function DocsPage() {
361361
<p>Fork the repository on GitHub</p>
362362
</a>
363363
<a
364-
href="https://github.com/SourceBox-LLC/OpenSentry-CloudNode"
364+
href="https://github.com/SourceBox-LLC/opensentry-cloud-node"
365365
target="_blank"
366366
rel="noopener noreferrer"
367367
className="docs-resource-card"

frontend/src/pages/LandingPage.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ function LandingPage() {
181181
</li>
182182
</ul>
183183
<a
184-
href="https://github.com/SourceBox-LLC/OpenSentry-CloudNode"
184+
href="https://github.com/SourceBox-LLC/opensentry-cloud-node"
185185
target="_blank"
186186
rel="noopener noreferrer"
187187
className="landing-arch-cta landing-arch-cta-primary"
@@ -426,7 +426,7 @@ function LandingPage() {
426426
Get Command Center
427427
</Link>
428428
<a
429-
href="https://github.com/SourceBox-LLC/OpenSentry-CloudNode"
429+
href="https://github.com/SourceBox-LLC/opensentry-cloud-node"
430430
target="_blank"
431431
rel="noopener noreferrer"
432432
className="landing-btn landing-btn-outline landing-btn-lg"

0 commit comments

Comments
 (0)