l
描述
一个通用的luvit egg,它会克隆一个Git仓库。如果没有指定分支,默认使用主分支。支持discordia Lua框架。
69 浏览
8 下载
2026-07-01
更新于 33 分钟前
预设配置详情
Lua (Luvit) 语言通用服务端配置
此服务端配置旨在允许用户从代码仓库拉取自己的 Lua 源码,并使用 Luvit 运行。
用户可以选择上传自己的文件来运行应用。
启动配置和命令可能需要修改才能正常工作。
配置说明
在修改服务端配置的启动配置之前,服务器会一直显示为 starting 状态。你需要编辑文本,使其与你的机器人打印的日志匹配,以便 Pterodactyl 面板将其检测为运行中。

你可以在使用不同机器人时使用数组来设置多个不同的值:
{
"done":[
"将此文本1改为实际内容",
"将此文本2改为实际内容"
]
}
crpi-61s8ghuciu93bus8.cn-shanghai.personal.cr.aliyuncs.com/pterocn-eggs/yolks:debian
./luvit {{LUA_FILE}}
| 变量名 | 变量 | 描述 | 默认值 | 规则 | 可查看 | 可编辑 |
|---|---|---|---|---|---|---|
| Git用户名 | USERNAME |
用于git认证的用户名。 | |
nullable|string
可选 字符串
|
||
| Git 访问令牌 | ACCESS_TOKEN |
用于 Git 的密码。 最佳实践是使用个人访问令牌。 https://github.com/settings/tokens https://gitlab.com/-/profile/personal_access_tokens | |
nullable|string
可选 字符串
|
||
| Git 仓库地址 | GIT_ADDRESS |
要克隆的GitHub仓库 例如 https://github.com/parkervcp/repo_name | |
nullable|string
可选 字符串
|
||
| 用户上传的文件 | USER_UPLOAD |
如果你让用户上传文件,跳过所有安装内容。 0 = 否(默认) 1 = 是 | 0 |
required|boolean
必填 布尔
|
||
| Git 分支 | BRANCH |
从 GitHub 上拉取哪个分支。 默认为空,表示拉取仓库的默认分支。 | |
nullable|string
可选 字符串
|
||
| lua文件 | LUA_FILE |
要运行的Lua文件 | app.lua |
required|string
必填 字符串
|
||
| Lit包 | LIT_PACKAGES |
要安装的Lit包 示例 SinisterRectus/discordia lduboeuf/cjson | |
nullable|string
可选 字符串
|
镜像
crpi-61s8ghuciu93bus8.cn-shanghai.personal.cr.aliyuncs.com/pterocn-eggs/installers:debian
入口
bash
#!/bin/bash
## luvit generic install script
apt update
apt install -y git curl jq file unzip
## get git files
mkdir -p /mnt/server
cd /mnt/server
if [ "${USER_UPLOAD}" == "true" ] || [ "${USER_UPLOAD}" == "1" ]; then
echo -e "assuming user knows what they are doing have a good day."
exit 0
fi
## add git ending if it's not on the address
if [[ ${GIT_ADDRESS} != *.git ]]; then
GIT_ADDRESS=${GIT_ADDRESS}.git
fi
if [ -z "${USERNAME}" ] && [ -z "${ACCESS_TOKEN}" ]; then
echo -e "using anon api call"
else
GIT_ADDRESS="https://${USERNAME}:${ACCESS_TOKEN}@$(echo -e ${GIT_ADDRESS} | cut -d/ -f3-)"
fi
## pull git repo
if [ "$(ls -A /mnt/server)" ]; then
echo -e "/mnt/server directory is not empty."
if [ -d .git ]; then
echo -e ".git directory exists"
if [ -f .git/config ]; then
echo -e "loading info from git config"
ORIGIN=$(git config --get remote.origin.url)
else
echo -e "files found with no git config"
echo -e "closing out without touching things to not break anything"
exit 10
fi
fi
if [ "${ORIGIN}" == "${GIT_ADDRESS}" ]; then
echo "pulling latest from github"
git pull
fi
else
echo -e "/mnt/server is empty.
cloning files into repo"
if [ -z ${BRANCH} ]; then
echo -e "cloning default branch"
git clone ${GIT_ADDRESS} .
else
echo -e "cloning ${BRANCH}'"
git clone --single-branch --branch ${BRANCH} ${GIT_ADDRESS} .
fi
fi
## install luvit for install time
curl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh
## Install luvit packages
./lit install ${LIT_PACKAGES}
## install end
echo "-----------------------------------------"
echo "Installation completed..."
echo "-----------------------------------------"
{
"_comment": "DO NOT EDIT: FILE GENERATED AUTOMATICALLY BY PTERODACTYL PANEL - PTERODACTYL.IO",
"meta": {
"version": "PTDL_v2",
"update_url": "https://eggs.pterodactyl.top/eggs/273/download/egg-luvit-generic.json"
},
"exported_at": "2024-04-02T11:46:37+02:00",
"name": "luvit generic",
"author": "parker@parkervcp.com",
"description": "一个通用的luvit egg,它会克隆一个Git仓库。如果没有指定分支,默认使用主分支。支持discordia Lua框架。",
"features": null,
"docker_images": {
"crpi-61s8ghuciu93bus8.cn-shanghai.personal.cr.aliyuncs.com/pterocn-eggs/yolks:debian": "crpi-61s8ghuciu93bus8.cn-shanghai.personal.cr.aliyuncs.com/pterocn-eggs/yolks:debian"
},
"file_denylist": [],
"startup": "./luvit {{LUA_FILE}}",
"config": {
"files": "{}",
"startup": "{\r\n \"done\": \"change me\"\r\n}",
"logs": "{}",
"stop": "^c"
},
"scripts": {
"installation": {
"script": "#!/bin/bash\r\n## luvit generic install script\r\n\r\napt update\r\napt install -y git curl jq file unzip\r\n\r\n## get git files\r\nmkdir -p /mnt/server\r\ncd /mnt/server\r\n\r\nif [ \"${USER_UPLOAD}\" == \"true\" ] || [ \"${USER_UPLOAD}\" == \"1\" ]; then\r\n echo -e \"assuming user knows what they are doing have a good day.\"\r\n exit 0\r\nfi\r\n\r\n## add git ending if it's not on the address\r\nif [[ ${GIT_ADDRESS} != *.git ]]; then\r\n GIT_ADDRESS=${GIT_ADDRESS}.git\r\nfi\r\n\r\nif [ -z \"${USERNAME}\" ] && [ -z \"${ACCESS_TOKEN}\" ]; then\r\n echo -e \"using anon api call\"\r\nelse\r\n GIT_ADDRESS=\"https://${USERNAME}:${ACCESS_TOKEN}@$(echo -e ${GIT_ADDRESS} | cut -d/ -f3-)\"\r\nfi\r\n\r\n## pull git repo\r\nif [ \"$(ls -A /mnt/server)\" ]; then\r\n echo -e \"/mnt/server directory is not empty.\"\r\n if [ -d .git ]; then\r\n echo -e \".git directory exists\"\r\n if [ -f .git/config ]; then\r\n echo -e \"loading info from git config\"\r\n ORIGIN=$(git config --get remote.origin.url)\r\n else\r\n echo -e \"files found with no git config\"\r\n echo -e \"closing out without touching things to not break anything\"\r\n exit 10\r\n fi\r\n fi\r\n\r\n if [ \"${ORIGIN}\" == \"${GIT_ADDRESS}\" ]; then\r\n echo \"pulling latest from github\"\r\n git pull\r\n fi\r\nelse\r\n echo -e \"/mnt/server is empty.\\ncloning files into repo\"\r\n if [ -z ${BRANCH} ]; then\r\n echo -e \"cloning default branch\"\r\n git clone ${GIT_ADDRESS} .\r\n else\r\n echo -e \"cloning ${BRANCH}'\"\r\n git clone --single-branch --branch ${BRANCH} ${GIT_ADDRESS} .\r\n fi\r\nfi\r\n\r\n## install luvit for install time\r\ncurl -L https://github.com/luvit/lit/raw/master/get-lit.sh | sh\r\n\r\n## Install luvit packages\r\n./lit install ${LIT_PACKAGES}\r\n\r\n## install end\r\necho \"-----------------------------------------\"\r\necho \"Installation completed...\"\r\necho \"-----------------------------------------\"",
"container": "crpi-61s8ghuciu93bus8.cn-shanghai.personal.cr.aliyuncs.com/pterocn-eggs/installers:debian",
"entrypoint": "bash"
}
},
"variables": [
{
"name": "Git用户名",
"description": "用于git认证的用户名。",
"env_variable": "USERNAME",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string",
"field_type": "text"
},
{
"name": "Git 访问令牌",
"description": "用于 Git 的密码。\n\n最佳实践是使用个人访问令牌。\nhttps://github.com/settings/tokens\nhttps://gitlab.com/-/profile/personal_access_tokens",
"env_variable": "ACCESS_TOKEN",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string",
"field_type": "text"
},
{
"name": "Git 仓库地址",
"description": "要克隆的GitHub仓库\n\n例如 https://github.com/parkervcp/repo_name",
"env_variable": "GIT_ADDRESS",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string",
"field_type": "text"
},
{
"name": "用户上传的文件",
"description": "如果你让用户上传文件,跳过所有安装内容。\n\n0 = 否(默认)\n1 = 是",
"env_variable": "USER_UPLOAD",
"default_value": "0",
"user_viewable": true,
"user_editable": false,
"rules": "required|boolean",
"field_type": "text"
},
{
"name": "Git 分支",
"description": "从 GitHub 上拉取哪个分支。\n\n默认为空,表示拉取仓库的默认分支。",
"env_variable": "BRANCH",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string",
"field_type": "text"
},
{
"name": "lua文件",
"description": "要运行的Lua文件",
"env_variable": "LUA_FILE",
"default_value": "app.lua",
"user_viewable": true,
"user_editable": true,
"rules": "required|string",
"field_type": "text"
},
{
"name": "Lit包",
"description": "要安装的Lit包\n\n示例\nSinisterRectus/discordia lduboeuf/cjson",
"env_variable": "LIT_PACKAGES",
"default_value": "",
"user_viewable": true,
"user_editable": true,
"rules": "nullable|string",
"field_type": "text"
}
]
}附属文件
暂无附属文件
提交历史
Fork 关系
查看关系图暂无 Fork,成为第一个 Fork 的人吧!
统计
69
浏览
8
下载
0
星标
0
复刻
作者
飒
飒爽师叔
UID: 1
279 预设
·
2026-06