diff --git a/README.md b/README.md index 20a6a2c..bb1934a 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Xboard is a modern panel system built on Laravel 11, focusing on providing a cle ## 🚀 Quick Start ```bash -git clone -b compose --depth 1 https://github.com/cedar2025/Xboard && \ +git clone -b compose --depth 1 https://github.com/Micah123321/Xboard && \ cd Xboard && \ docker compose run -it --rm \ -e ENABLE_SQLITE=true \ @@ -99,4 +99,4 @@ Issues and Pull Requests are welcome to help improve the project. ## 📈 Star History -[![Stargazers over time](https://starchart.cc/cedar2025/Xboard.svg)](https://starchart.cc/cedar2025/Xboard) +[![Stargazers over time](https://starchart.cc/Micah123321/Xboard.svg)](https://starchart.cc/Micah123321/Xboard) diff --git a/app/Services/UpdateService.php b/app/Services/UpdateService.php index de063cd..13b9aae 100644 --- a/app/Services/UpdateService.php +++ b/app/Services/UpdateService.php @@ -12,7 +12,7 @@ use Illuminate\Support\Facades\File; class UpdateService { const UPDATE_CHECK_INTERVAL = 86400; // 24 hours - const GITHUB_API_URL = 'https://api.github.com/repos/cedar2025/xboard/commits'; + const GITHUB_API_URL = 'https://api.github.com/repos/Micah123321/xboard/commits'; const CACHE_UPDATE_INFO = 'UPDATE_INFO'; const CACHE_LAST_CHECK = 'LAST_UPDATE_CHECK'; const CACHE_UPDATE_LOCK = 'UPDATE_LOCK'; diff --git a/docs/development-guide.zh-CN.md b/docs/development-guide.zh-CN.md index 19a5696..791e6cd 100644 --- a/docs/development-guide.zh-CN.md +++ b/docs/development-guide.zh-CN.md @@ -40,7 +40,7 @@ ## 3.1 初始化 ```bash -git clone -b compose --depth 1 https://github.com/cedar2025/Xboard +git clone -b compose --depth 1 https://github.com/Micah123321/Xboard cd Xboard cp compose.sample.yaml compose.yaml ``` @@ -203,7 +203,7 @@ CI 使用 `.github/workflows/docker-publish.yml` 进行多架构构建并推送 ```bash docker build \ --build-arg CACHEBUST=$(date +%s) \ - --build-arg REPO_URL=https://github.com/cedar2025/Xboard \ + --build-arg REPO_URL=https://github.com/Micah123321/Xboard \ --build-arg BRANCH_NAME=master \ -t xboard:dev . ``` diff --git a/docs/en/installation/1panel.md b/docs/en/installation/1panel.md index 627dc4a..870236c 100644 --- a/docs/en/installation/1panel.md +++ b/docs/en/installation/1panel.md @@ -62,7 +62,7 @@ apt update && apt install -y git yum update && yum install -y git # Clone repository -git clone -b compose --depth 1 https://github.com/cedar2025/Xboard ./ +git clone -b compose --depth 1 https://github.com/Micah123321/Xboard ./ # Configure Docker Compose ``` @@ -71,7 +71,7 @@ git clone -b compose --depth 1 https://github.com/cedar2025/Xboard ./ ```yaml services: web: - image: ghcr.io/cedar2025/xboard:new + image: ghcr.io/Micah123321/xboard:new volumes: - ./.docker/.data/redis/:/data/ - ./.env:/www/.env @@ -91,7 +91,7 @@ services: - 1panel-network horizon: - image: ghcr.io/cedar2025/xboard:new + image: ghcr.io/Micah123321/xboard:new volumes: - ./.docker/.data/redis/:/data/ - ./.env:/www/.env diff --git a/docs/en/installation/aapanel-docker.md b/docs/en/installation/aapanel-docker.md index 9366d27..9da6e83 100644 --- a/docs/en/installation/aapanel-docker.md +++ b/docs/en/installation/aapanel-docker.md @@ -66,7 +66,7 @@ chattr -i .user.ini rm -rf .htaccess 404.html 502.html index.html .user.ini # Clone repository -git clone https://github.com/cedar2025/Xboard.git ./ +git clone https://github.com/Micah123321/Xboard.git ./ # Prepare configuration file cp compose.sample.yaml compose.yaml diff --git a/docs/en/installation/aapanel.md b/docs/en/installation/aapanel.md index d2cb3bd..c717763 100644 --- a/docs/en/installation/aapanel.md +++ b/docs/en/installation/aapanel.md @@ -74,7 +74,7 @@ chattr -i .user.ini rm -rf .htaccess 404.html 502.html index.html .user.ini # Clone repository -git clone https://github.com/cedar2025/Xboard.git ./ +git clone https://github.com/Micah123321/Xboard.git ./ # Install dependencies sh init.sh diff --git a/docs/en/installation/docker-compose.md b/docs/en/installation/docker-compose.md index c05818b..03c97b1 100644 --- a/docs/en/installation/docker-compose.md +++ b/docs/en/installation/docker-compose.md @@ -17,7 +17,7 @@ systemctl start docker 1. Get project files: ```bash -git clone -b compose --depth 1 https://github.com/cedar2025/Xboard +git clone -b compose --depth 1 https://github.com/Micah123321/Xboard cd Xboard ```