- By clicking on Start exam, you accept our Privacy Policy
+ By clicking on Start exam, you accept our Privacy Policy
diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md
index 86c6d3e..98b5f2f 100644
--- a/docs/CONTRIBUTING.md
+++ b/docs/CONTRIBUTING.md
@@ -4,7 +4,7 @@ Thank you for your interest in contributing! Here's how you can help:
## Quick Start
-1. Fork and clone the [repository](https://github.com/@nishanb/CK-X)
+1. Fork and clone the [repository](https://github.com/@sailor-sh/CK-X)
2. Follow our [Development Setup Guide](development-setup.md)
3. Create a new branch for your changes
4. Submit a Pull Request
diff --git a/docs/local-setup-guide.md b/docs/local-setup-guide.md
index a906761..c6ee156 100644
--- a/docs/local-setup-guide.md
+++ b/docs/local-setup-guide.md
@@ -4,7 +4,7 @@
1. Clone the repository:
```bash
-git clone https://github.com/@nishanb/CK-X.git
+git clone https://github.com/@sailor-sh/CK-X.git
cd ck-x
```
diff --git a/docs/webapp/index-functionality.md b/docs/webapp/index-functionality.md
index c7050cd..78b2467 100644
--- a/docs/webapp/index-functionality.md
+++ b/docs/webapp/index-functionality.md
@@ -60,7 +60,7 @@ The `index.html` file serves as the main landing page for the CK-X Simulator. He
-
+
GitHub
diff --git a/scripts/COMPOSE-DEPLOY.md b/scripts/COMPOSE-DEPLOY.md
index f2ebd79..df4f2c0 100644
--- a/scripts/COMPOSE-DEPLOY.md
+++ b/scripts/COMPOSE-DEPLOY.md
@@ -17,13 +17,13 @@ This guide provides instructions for deploying the CK-X Simulator on different o
Open Terminal and run:
```bash
-curl -fsSL https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.sh | bash
+curl -fsSL https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.sh | bash
```
or, if the current user does not have the permission to run docker commands:
```bash
-curl -fsSL https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.sh | sudo bash
+curl -fsSL https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.sh | sudo bash
```
### Windows
@@ -31,7 +31,7 @@ curl -fsSL https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install
Open PowerShell as Administrator and run:
```powershell
-irm https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.ps1 | iex
+irm https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.ps1 | iex
```
## Manual Installation
@@ -40,7 +40,7 @@ irm https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.ps1 |
1. Clone the repository:
```bash
- git clone https://github.com/nishanb/CK-X.git
+ git clone https://github.com/sailor-sh/CK-X.git
cd CK-X
```
@@ -54,8 +54,8 @@ irm https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.ps1 |
If you prefer to install manually or the quick install doesn't work:
1. Download the installation script:
- - Linux/macOS: [install.sh](https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.sh)
- - Windows: [install.ps1](https://raw.githubusercontent.com/nishanb/CK-X/master/scripts/install.ps1)
+ - Linux/macOS: [install.sh](https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.sh)
+ - Windows: [install.ps1](https://raw.githubusercontent.com/sailor-sh/CK-X/master/scripts/install.ps1)
2. Run the script:
- Linux/macOS:
@@ -124,7 +124,7 @@ docker compose up -d
If you encounter issues:
1. Check the logs: `docker compose logs -f`
-2. Visit our [GitHub Issues](https://github.com/nishanb/CK-X/issues)
+2. Visit our [GitHub Issues](https://github.com/sailor-sh/CK-X/issues)
3. Contact support with logs and system information
## Uninstallation
diff --git a/scripts/house-keeping/build-and-push.sh b/scripts/house-keeping/build-and-push.sh
index 2ec0ff1..0ee2476 100755
--- a/scripts/house-keeping/build-and-push.sh
+++ b/scripts/house-keeping/build-and-push.sh
@@ -5,7 +5,7 @@
# Supports multi-architecture builds (linux/amd64 and linux/arm64)
# Set variables
-DOCKER_HUB_USERNAME=${DOCKER_HUB_USERNAME:-nishanb}
+DOCKER_HUB_USERNAME=${DOCKER_HUB_USERNAME:}
REGISTRY="${DOCKER_HUB_USERNAME}"
SKIP_LOGIN_CHECK=${SKIP_LOGIN_CHECK:-false}
PLATFORMS="linux/amd64,linux/arm64"
diff --git a/scripts/install.ps1 b/scripts/install.ps1
index 4a57334..a288329 100644
--- a/scripts/install.ps1
+++ b/scripts/install.ps1
@@ -46,7 +46,7 @@ try {
Write-ColorOutput "CK-X Simulator: Kubernetes Certification Exam Simulator" "Cyan"
Write-ColorOutput "Practice in a realistic environment for CKA, CKAD, and more" "Cyan"
Write-ColorOutput "==============================================================" "Cyan"
- Write-ColorOutput " Facing any issues? Please report at: https://github.com/nishanb/CK-X/issues" "Cyan"
+ Write-ColorOutput " Facing any issues? Please report at: https://github.com/sailor-sh/CK-X/issues" "Cyan"
Write-Host ""
}
@@ -258,7 +258,7 @@ try {
# Download docker-compose.yml
Write-ColorOutput "Downloading Docker Compose file..." "Yellow"
- $composeUrl = "https://raw.githubusercontent.com/nishanb/ck-x/master/docker-compose.yaml"
+ $composeUrl = "https://raw.githubusercontent.com/sailor-sh/CK-X/master/docker-compose.yaml"
if (Test-Command curl) {
curl.exe -fsSL $composeUrl -o docker-compose.yml
diff --git a/scripts/install.sh b/scripts/install.sh
index 4e9d066..ff620cc 100755
--- a/scripts/install.sh
+++ b/scripts/install.sh
@@ -23,7 +23,7 @@ print_header() {
echo -e "${CYAN}CK-X Simulator: Kubernetes Certification Exam Simulator${NC}"
echo -e "${CYAN}Practice in a realistic environment for CKA, CKAD, and more${NC}"
echo -e "${CYAN}==============================================================${NC}"
- echo -e "${CYAN} Facing any issues? Please report at: https://github.com/nishanb/CK-X/issues${NC}"
+ echo -e "${CYAN} Facing any issues? Please report at: https://github.com/sailor-sh/CK-X/issues${NC}"
echo
}
@@ -184,7 +184,7 @@ main() {
# Download docker-compose.yml
echo -e "${YELLOW}Downloading Docker Compose file...${NC}"
- curl -fsSL https://raw.githubusercontent.com/nishanb/ck-x/master/docker-compose.yaml -o docker-compose.yml
+ curl -fsSL https://raw.githubusercontent.com/sailor-sh/CK-X/master/docker-compose.yaml -o docker-compose.yml
if [ ! -f docker-compose.yml ]; then
echo -e "${RED}✗ Failed to download docker-compose.yml${NC}"