Skip to content

Commit b329f38

Browse files
author
Derek
committed
chore: update GitHub org from hypersec-io to hyperi-io
1 parent 3f5575e commit b329f38

8 files changed

Lines changed: 15 additions & 15 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ We welcome contributions from the community! This project follows standard Apach
2020
# Fork via GitHub UI, then clone your fork
2121
git clone https://github.com/YOUR-USERNAME/dfe-developer
2222
cd dfe-developer
23-
git remote add upstream https://github.com/hypersec-io/dfe-developer
23+
git remote add upstream https://github.com/hyperi-io/dfe-developer
2424
```
2525

2626
### 2. Create a Feature Branch
@@ -217,7 +217,7 @@ git clone https://github.com/YOUR-USERNAME/dfe-developer
217217
cd dfe-developer
218218

219219
# Keep your fork synced
220-
git remote add upstream https://github.com/hypersec-io/dfe-developer
220+
git remote add upstream https://github.com/hyperi-io/dfe-developer
221221
git fetch upstream
222222
git rebase upstream/main
223223
```

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# DFE Developer Environment
22

3-
[![Latest Release](https://img.shields.io/github/v/release/hypersec-io/dfe-developer)](https://github.com/hypersec-io/dfe-developer/releases/latest)
4-
[![Release Date](https://img.shields.io/github/release-date/hypersec-io/dfe-developer)](https://github.com/hypersec-io/dfe-developer/releases/latest)
5-
[![License](https://img.shields.io/github/license/hypersec-io/dfe-developer)](LICENSE)
3+
[![Latest Release](https://img.shields.io/github/v/release/hyperi-io/dfe-developer)](https://github.com/hyperi-io/dfe-developer/releases/latest)
4+
[![Release Date](https://img.shields.io/github/release-date/hyperi-io/dfe-developer)](https://github.com/hyperi-io/dfe-developer/releases/latest)
5+
[![License](https://img.shields.io/github/license/hyperi-io/dfe-developer)](LICENSE)
66
[![Platform](https://img.shields.io/badge/platform-Ubuntu%20%7C%20Fedora%20%7C%20macOS-blue)](#platform-support)
7-
[![Last Commit](https://img.shields.io/github/last-commit/hypersec-io/dfe-developer)](https://github.com/hypersec-io/dfe-developer/commits/main)
8-
[![Stars](https://img.shields.io/github/stars/hypersec-io/dfe-developer?style=social)](https://github.com/hypersec-io/dfe-developer/stargazers)
7+
[![Last Commit](https://img.shields.io/github/last-commit/hyperi-io/dfe-developer)](https://github.com/hyperi-io/dfe-developer/commits/main)
8+
[![Stars](https://img.shields.io/github/stars/hyperi-io/dfe-developer?style=social)](https://github.com/hyperi-io/dfe-developer/stargazers)
99

1010
Standardised developer environment for HyperSec DFE teams. One command gets you Docker, Kubernetes tools, cloud CLIs, and a properly configured desktop.
1111

@@ -21,7 +21,7 @@ Standardised developer environment for HyperSec DFE teams. One command gets you
2121
## Quick Start
2222

2323
```bash
24-
git clone https://github.com/hypersec-io/dfe-developer
24+
git clone https://github.com/hyperi-io/dfe-developer
2525
cd dfe-developer
2626

2727
# Base install (Docker, Git, K8s tools, VS Code, Chrome)

ansible/tests/proxmox/test_all.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
- name: Run install.sh on Fedora
4848
ansible.builtin.shell: |
49-
ssh {{ env.PROXMOX_FEDORA_USER }}@{{ env.PROXMOX_FEDORA_HOSTNAME }} "curl -fsSL https://raw.githubusercontent.com/hypersec-io/dfe-developer/feat/no-ref/ansible-deployment/install.sh -o install.sh && chmod +x install.sh && echo '{{ env.PROXMOX_FEDORA_PASSWORD }}' | sudo -S ./install.sh --branch feat/no-ref/ansible-deployment --all"
49+
ssh {{ env.PROXMOX_FEDORA_USER }}@{{ env.PROXMOX_FEDORA_HOSTNAME }} "curl -fsSL https://raw.githubusercontent.com/hyperi-io/dfe-developer/feat/no-ref/ansible-deployment/install.sh -o install.sh && chmod +x install.sh && echo '{{ env.PROXMOX_FEDORA_PASSWORD }}' | sudo -S ./install.sh --branch feat/no-ref/ansible-deployment --all"
5050
register: fedora_install_result
5151

5252
- name: TEST 4 - install.sh on Ubuntu
@@ -59,5 +59,5 @@
5959

6060
- name: Run install.sh on Ubuntu
6161
ansible.builtin.shell: |
62-
ssh {{ env.PROXMOX_UBUNTU_USER }}@{{ env.PROXMOX_UBUNTU_HOSTNAME }} "curl -fsSL https://raw.githubusercontent.com/hypersec-io/dfe-developer/feat/no-ref/ansible-deployment/install.sh -o install.sh && chmod +x install.sh && echo '{{ env.PROXMOX_UBUNTU_PASSWORD }}' | sudo -S ./install.sh --branch feat/no-ref/ansible-deployment --all"
62+
ssh {{ env.PROXMOX_UBUNTU_USER }}@{{ env.PROXMOX_UBUNTU_HOSTNAME }} "curl -fsSL https://raw.githubusercontent.com/hyperi-io/dfe-developer/feat/no-ref/ansible-deployment/install.sh -o install.sh && chmod +x install.sh && echo '{{ env.PROXMOX_UBUNTU_PASSWORD }}' | sudo -S ./install.sh --branch feat/no-ref/ansible-deployment --all"
6363
register: ubuntu_install_result

fedora/QUICKSTART.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ What you'll need:
1616
### Step 1: Clone Repository
1717

1818
```bash
19-
git clone https://github.com/hypersec-io/dfe-developer.git
19+
git clone https://github.com/hyperi-io/dfe-developer.git
2020
cd dfe-developer/fedora
2121
```
2222

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ if [[ ! -d "ansible" ]]; then
295295
print_info "Cloning ansible directory from repository (branch: $GIT_BRANCH)..."
296296

297297
# Download GitHub tarball (no git required)
298-
TARBALL_URL="https://github.com/hypersec-io/dfe-developer/archive/refs/heads/${GIT_BRANCH}.tar.gz"
298+
TARBALL_URL="https://github.com/hyperi-io/dfe-developer/archive/refs/heads/${GIT_BRANCH}.tar.gz"
299299

300300
print_info "Downloading from $TARBALL_URL..."
301301
curl -fsSL "$TARBALL_URL" -o /tmp/dfe-developer.tar.gz || {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Standardised complete developer environment setup for HyperSec DFE developers",
66
"repository": {
77
"type": "git",
8-
"url": "https://github.com/hypersec-io/dfe-developer.git"
8+
"url": "https://github.com/hyperi-io/dfe-developer.git"
99
},
1010
"scripts": {
1111
"release": "semantic-release",

tools/git/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ You're in a git repository and want to clean the default branch:
454454
Clean a specific repository's default branch:
455455

456456
```bash
457-
./tools/git/git-claude-contrib-fix.sh https://github.com/hypersec-io/dfe-developer.git
457+
./tools/git/git-claude-contrib-fix.sh https://github.com/hyperi-io/dfe-developer.git
458458
```
459459

460460
### Example 3: Specific Branch

windows/QUICKSTART.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ What you'll need:
2929

3030
### Step 1: Download
3131
```powershell
32-
git clone https://github.com/hypersec-io/dfe-developer.git
32+
git clone https://github.com/hyperi-io/dfe-developer.git
3333
cd dfe-developer/windows
3434
```
3535

0 commit comments

Comments
 (0)