diff --git a/config.json b/config.json deleted file mode 100644 index 16dfc45..0000000 --- a/config.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "server": { - "domain": "example.con", - "host": "0.0.0.0", - "port": 443, - "certPath":"./example.pem", - "keyPath":"./example.pem" - }, - "copilot_config":{ - "github_api_url": "https://api.github.com/copilot_internal/v2/token", - "token":[ - "yours_token" - ]}, - "verification":"" -} \ No newline at end of file diff --git a/install.sh b/install.sh deleted file mode 100644 index 552823f..0000000 --- a/install.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash -SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -START_SCRIPT_PATH="/usr/local/bin/scop" -cat > "$START_SCRIPT_PATH" </dev/null 2>&1 & - ;; - st) - echo "Stopping share-copilot..." - pkill -f "\$EXECUTABLE" - ;; - v) - if pgrep -f "\$EXECUTABLE" >/dev/null; then - echo "share-copilot is running" - else - echo "share-copilot is not running" - fi - ;; - *) - echo "Usage: \$0 {r|rb|st|v}" - exit 1 - ;; -esac - - - -exit 0 -EOF -chmod +x "$START_SCRIPT_PATH" -echo "----------------- -install success! ------------------ -scop r --运行 -scop rb --后台运行 -scop st --停止 -scop v --查看状态 ------------------" diff --git a/share-copilot b/share-copilot deleted file mode 100644 index 39c916d..0000000 Binary files a/share-copilot and /dev/null differ diff --git a/uninstall.sh b/uninstall.sh deleted file mode 100644 index ad743e3..0000000 --- a/uninstall.sh +++ /dev/null @@ -1,3 +0,0 @@ -START_SCRIPT_PATH="/usr/local/bin/scop" -rm -f "$START_SCRIPT_PATH" -echo "卸载完成!"