diff --git a/.github/README.md b/.github/README.md
index 4c3319ba..3b8c4653 100644
--- a/.github/README.md
+++ b/.github/README.md
@@ -135,6 +135,7 @@
| 🟢 | | Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 | | Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 | | Sun Panel | https://doc.sun-panel.top/ | 一个服务器、NAS导航面板、Homepage、浏览器首页 | |
+| 🟢 | | 卷王 | https://surveyking.cn/ | 卷王问卷考试系统 | |
| 🟢 | | Synapse | https://matrix.org/ | 用于安全、分散通信的开放网络 | Matrix |
| 🟢 | | Synapse Admin | https://github.com/Awesome-Technologies/synapse-admin/ | 【管理面板】用于安全、分散通信的开放网络 | Matrix |
| 🟢 | | Element Web | https://element.io/ | 一个用于Web的光泽Matrix协作客户端 | Matrix |
diff --git a/README.md b/README.md
index 47ee1aba..e01c6117 100644
--- a/README.md
+++ b/README.md
@@ -130,6 +130,7 @@
| 🟢 | | Stream-Rec Web版 | https://github.com/hua0512/stream-rec/ | 【前端版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 | | Stream-Rec 服务版 | https://github.com/hua0512/stream-rec/ | 【服务版】Stream-rec是一个用于各种流媒体服务的自动流媒体录制工具 | |
| 🟢 | | Sun Panel | https://doc.sun-panel.top/ | 一个服务器、NAS导航面板、Homepage、浏览器首页 | |
+| 🟢 | | 卷王 | https://surveyking.cn/ | 卷王问卷考试系统 | |
| 🟢 | | Synapse | https://matrix.org/ | 用于安全、分散通信的开放网络 | Matrix |
| 🟢 | | Synapse Admin | https://github.com/Awesome-Technologies/synapse-admin/ | 【管理面板】用于安全、分散通信的开放网络 | Matrix |
| 🟢 | | Element Web | https://element.io/ | 一个用于Web的光泽Matrix协作客户端 | Matrix |
diff --git a/apps/halo-h2/2.20.11/data.yml b/apps/halo-h2/2.20.11/data.yml
new file mode 100644
index 00000000..72848caa
--- /dev/null
+++ b/apps/halo-h2/2.20.11/data.yml
@@ -0,0 +1,25 @@
+additionalProperties:
+ formFields:
+ - default: "/home/halo"
+ edit: true
+ envKey: HALO_ROOT_PATH
+ labelZh: 数据持久化路径
+ labelEn: Data persistence path
+ required: true
+ type: text
+ - default: 8090
+ edit: true
+ envKey: PANEL_APP_PORT_HTTP
+ labelZh: 访问端口
+ labelEn: Port
+ required: true
+ rule: paramPort
+ type: number
+ - default: "http://127.0.0.1:8090"
+ edit: true
+ envKey: HALO_EXTERNAL_URL
+ labelZh: 公网访问地址
+ labelEn: External URL
+ required: true
+ rule: paramExtUrl
+ type: text
diff --git a/apps/halo-h2/2.20.11/docker-compose.yml b/apps/halo-h2/2.20.11/docker-compose.yml
new file mode 100644
index 00000000..653bee5b
--- /dev/null
+++ b/apps/halo-h2/2.20.11/docker-compose.yml
@@ -0,0 +1,22 @@
+networks:
+ 1panel-network:
+ external: true
+
+services:
+ halo:
+ image: halohub/halo:2.20.11
+ container_name: ${CONTAINER_NAME}
+ labels:
+ createdBy: "Apps"
+ restart: always
+ networks:
+ - 1panel-network
+ ports:
+ - ${PANEL_APP_PORT_HTTP}:8090
+ volumes:
+ - ${HALO_ROOT_PATH}/data:/root/.halo2
+ environment:
+ - JVM_OPTS=-Xmx256m -Xms256m
+ command:
+ - --spring.sql.init.platform=h2
+ - --halo.external-url=${HALO_EXTERNAL_URL}
diff --git a/apps/halo-h2/2.20.11/envs/default.env b/apps/halo-h2/2.20.11/envs/default.env
new file mode 100644
index 00000000..cd05f46e
--- /dev/null
+++ b/apps/halo-h2/2.20.11/envs/default.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+ENV_FILE=.env
diff --git a/apps/halo-h2/2.20.11/envs/global.env b/apps/halo-h2/2.20.11/envs/global.env
new file mode 100644
index 00000000..e10989fe
--- /dev/null
+++ b/apps/halo-h2/2.20.11/envs/global.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+TZ=Asia/Shanghai
diff --git a/apps/halo-h2/2.20.11/scripts/init.sh b/apps/halo-h2/2.20.11/scripts/init.sh
new file mode 100644
index 00000000..07fb8c3f
--- /dev/null
+++ b/apps/halo-h2/2.20.11/scripts/init.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/halo-h2/2.20.11/scripts/uninstall.sh b/apps/halo-h2/2.20.11/scripts/uninstall.sh
new file mode 100644
index 00000000..c86c4fbc
--- /dev/null
+++ b/apps/halo-h2/2.20.11/scripts/uninstall.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/halo-h2/2.20.11/scripts/upgrade.sh b/apps/halo-h2/2.20.11/scripts/upgrade.sh
new file mode 100644
index 00000000..07fb8c3f
--- /dev/null
+++ b/apps/halo-h2/2.20.11/scripts/upgrade.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/halo-h2/README.md b/apps/halo-h2/README.md
new file mode 100644
index 00000000..34a5439c
--- /dev/null
+++ b/apps/halo-h2/README.md
@@ -0,0 +1,79 @@
+# Halo H2版
+
+**强大易用的开源建站工具。**
+
+配合上丰富的模板与插件,帮助你构建你心中的理想站点。
+
+![Halo](https://file.lifebus.top/imgs/halo_cover.png)
+
+![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
+
+## 简介
+
+> ### 可插拔架构
+
+Halo 采用可插拔架构,功能模块之间耦合度低、灵活性提高。支持用户按需安装、卸载插件,操作便捷。同时提供插件开发接口以确保较高扩展性和可维护性。
+
+✅ 支持在运行时安装和卸载插件
+
+✅ 更加方便地集成三方平台
+
+✅ 统一的可配置设置表单
+
+✅ 支持自定义模型,自动生成 RESTful API
+
+
+> ### 功能丰富的主题机制
+
+Halo 提供完整的主题模板机制,用于构建前台界面。这意味着用户可以根据自己的喜好选择不同类型的主题模板来定制化自己的站点外观。
+
+✅ 动态切换主题模板
+
+✅ 支持实时编辑和预览效果
+
+✅ 多语言支持
+
+✅ 与插件配合实现更多功能
+
+> ### 编辑器
+
+Halo 的富文本编辑器提供了方便丰富的功能,包括添加标题、段落、引用、列表、代码块等元素,并支持设置样式属性、上传图片、插入视频等功能。这些工具让你的文章创作更加便捷和生动。
+
+✅ 完备的富文本格式支持
+
+✅ 支持拖拽和粘贴图片上传
+
+✅ 支持通过插件扩展编辑器
+
+> 更多特性
+>
+> 我们将不断探索和追求更好的使用体验,持续迭代出更加优秀的 Halo
+
++ 代码开源
+
+Halo 的项目代码开源在 GitHub 上且处于积极维护状态,截止目前已经发布了 109 个版本。你也可以在上面提交你的问题或者参与代码贡献。
+
++ 易于部署
+
+推荐使用 Docker 的方式部署 Halo,便于升级,同时避免了各种环境依赖的问题。统一管理在工作目录中的应用数据也能方便地进行备份和迁移。
+
++ 插件机制
+
+支持在插件运行时为系统添加新功能,同时保持 Halo 自身的简洁轻量。这种灵活的插件机制让用户根据自身需求自由扩展 Halo
+的功能,帮助用户实现富有想象力的站点。
+
++ 模板机制
+
+支持自定义配置、主题预览、多语言等功能。这种灵活的模板系统让用户可以针对自己的需求进行自定义配置,为网站带来更加个性化的外观和交互体验。
+
++ 附件管理
+
+支持多种存储策略,并支持通过插件扩展外部存储位置,可以让用户更加灵活地地上传、查看和管理附件。
+
++ 搜索引擎
+
+内置全文搜索引擎,支持关键字搜索文章和页面内容。同时支持通过插件扩展外部搜索引擎,做到让用户按需选择、自由扩展。
+
+---
+
+![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
diff --git a/apps/halo-h2/data.yml b/apps/halo-h2/data.yml
new file mode 100644
index 00000000..e21c9775
--- /dev/null
+++ b/apps/halo-h2/data.yml
@@ -0,0 +1,14 @@
+additionalProperties:
+ key: halo-h2
+ name: Halo H2
+ tags:
+ - WebSite
+ - Local
+ shortDescZh: 强大易用的开源建站工具
+ shortDescEn: Powerful and easy-to-use open source website builder
+ type: website
+ crossVersionUpdate: true
+ limit: 0
+ website: https://halo.run/
+ github: https://github.com/halo-dev/halo/
+ document: https://docs.halo.run/
diff --git a/apps/halo-h2/logo.png b/apps/halo-h2/logo.png
new file mode 100644
index 00000000..044ab596
Binary files /dev/null and b/apps/halo-h2/logo.png differ
diff --git a/apps/surveyking-h2/1.8.2/data.yml b/apps/surveyking-h2/1.8.2/data.yml
new file mode 100644
index 00000000..773317bc
--- /dev/null
+++ b/apps/surveyking-h2/1.8.2/data.yml
@@ -0,0 +1,17 @@
+additionalProperties:
+ formFields:
+ - default: "/home/surveyking"
+ edit: true
+ envKey: SURVEYKING_ROOT_PATH
+ labelZh: 数据持久化路径
+ labelEn: Data persistence path
+ required: true
+ type: text
+ - default: 1991
+ edit: true
+ envKey: PANEL_APP_PORT_HTTP
+ labelZh: WebUI 端口
+ labelEn: WebUI port
+ required: true
+ rule: paramPort
+ type: number
diff --git a/apps/surveyking-h2/1.8.2/docker-compose.yml b/apps/surveyking-h2/1.8.2/docker-compose.yml
new file mode 100644
index 00000000..500bb17a
--- /dev/null
+++ b/apps/surveyking-h2/1.8.2/docker-compose.yml
@@ -0,0 +1,22 @@
+networks:
+ 1panel-network:
+ external: true
+
+services:
+ surveyking:
+ image: surveyking/surveyking:v1.8.2
+ container_name: ${CONTAINER_NAME}
+ labels:
+ createdBy: "Apps"
+ restart: always
+ networks:
+ - 1panel-network
+ ports:
+ - ${PANEL_APP_PORT_HTTP}:1991
+ env_file:
+ - ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
+ - ${ENV_FILE:-/etc/1panel/envs/default.env}
+ volumes:
+ - ${SURVEYKING_ROOT_PATH}/db:/app/db
+ - ${SURVEYKING_ROOT_PATH}/files:/app/files
+ - ${SURVEYKING_ROOT_PATH}/logs:/app/logs
diff --git a/apps/surveyking-h2/1.8.2/envs/default.env b/apps/surveyking-h2/1.8.2/envs/default.env
new file mode 100644
index 00000000..cd05f46e
--- /dev/null
+++ b/apps/surveyking-h2/1.8.2/envs/default.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+ENV_FILE=.env
diff --git a/apps/surveyking-h2/1.8.2/envs/global.env b/apps/surveyking-h2/1.8.2/envs/global.env
new file mode 100644
index 00000000..e10989fe
--- /dev/null
+++ b/apps/surveyking-h2/1.8.2/envs/global.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+TZ=Asia/Shanghai
diff --git a/apps/surveyking-h2/1.8.2/scripts/init.sh b/apps/surveyking-h2/1.8.2/scripts/init.sh
new file mode 100644
index 00000000..07fb8c3f
--- /dev/null
+++ b/apps/surveyking-h2/1.8.2/scripts/init.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/surveyking-h2/1.8.2/scripts/uninstall.sh b/apps/surveyking-h2/1.8.2/scripts/uninstall.sh
new file mode 100644
index 00000000..c86c4fbc
--- /dev/null
+++ b/apps/surveyking-h2/1.8.2/scripts/uninstall.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/surveyking-h2/1.8.2/scripts/upgrade.sh b/apps/surveyking-h2/1.8.2/scripts/upgrade.sh
new file mode 100644
index 00000000..07fb8c3f
--- /dev/null
+++ b/apps/surveyking-h2/1.8.2/scripts/upgrade.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/surveyking-h2/README.md b/apps/surveyking-h2/README.md
new file mode 100644
index 00000000..5e140911
--- /dev/null
+++ b/apps/surveyking-h2/README.md
@@ -0,0 +1,37 @@
+# 卷王 H2版
+
+卷王问卷,人人都可快速部署的的问卷考试系统,你可以在此完成在线表单设计,数据收集、统计和分析工作,应用场景覆盖全行业。
+
+![卷王](https://file.lifebus.top/imgs/surveyking_cover.png)
+
+![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
+
+## 特性
+
+### 问卷调查
+
+题型多样,洞悉客户心声
+
+自由创建,题型多样,逻辑编排、数据校验、问卷设置能力遥遥领先,多渠道发布,多终端管理,数据结果清晰可视化,一键下载报告,让问卷工作不再繁琐。
+
+### 在线考试
+
+轻松考试,即刻评分
+
+题库抽题,随机抽题,客观题自动算分,主观题人工打分,防作弊配置,自动显示正确答案和解析,证书在线编制和发放,全流程、轻量化考试解决方案。
+
+### 多维测评
+
+精准测评,专业报告
+
+自由设计测评题目、测评维度、在线编制维度报告,不管是专业的量表试题,还是出具专业的MBTI维度报告,都能轻松快捷应对。
+
+### 数据查询
+
+高效数据处理,智能输出
+
+轻松创建数据查询和分享系统,可以在线完成数据填报、查询和修改。多样化的数据分析选项,数据编码、SPSS导出、Excel导出、实时数据统计报告。
+
+---
+
+![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
diff --git a/apps/surveyking-h2/data.yml b/apps/surveyking-h2/data.yml
new file mode 100644
index 00000000..3f92e2ae
--- /dev/null
+++ b/apps/surveyking-h2/data.yml
@@ -0,0 +1,14 @@
+additionalProperties:
+ key: surveyking-h2
+ name: 卷王 H2
+ tags:
+ - WebSite
+ - Local
+ shortDescZh: 卷王问卷考试系统
+ shortDescEn: SurveyKing is a survey and exam system
+ type: website
+ crossVersionUpdate: true
+ limit: 0
+ website: https://surveyking.cn/
+ github: https://github.com/javahuang/surveyking/
+ document: https://surveyking.cn/help/quickstart/
diff --git a/apps/surveyking-h2/logo.png b/apps/surveyking-h2/logo.png
new file mode 100644
index 00000000..ff6c1372
Binary files /dev/null and b/apps/surveyking-h2/logo.png differ
diff --git a/apps/surveyking/1.8.2/data.yml b/apps/surveyking/1.8.2/data.yml
new file mode 100644
index 00000000..aac002a9
--- /dev/null
+++ b/apps/surveyking/1.8.2/data.yml
@@ -0,0 +1,75 @@
+additionalProperties:
+ formFields:
+ - child:
+ default: ""
+ envKey: PANEL_DB_HOST
+ required: true
+ type: service
+ default: mysql
+ edit: true
+ envKey: PANEL_DB_TYPE
+ labelZh: MySQL 服务 (前置检查)
+ labelEn: Database Service (Pre-check)
+ required: true
+ type: apps
+ values:
+ - label: MariaDB
+ value: mariadb
+ - label: MySQL
+ value: mysql
+ - label: Percona
+ value: percona
+ - default: "/home/surveyking"
+ edit: true
+ envKey: SURVEYKING_ROOT_PATH
+ labelZh: 数据持久化路径
+ labelEn: Data persistence path
+ required: true
+ type: text
+ - default: 1991
+ edit: true
+ envKey: PANEL_APP_PORT_HTTP
+ labelZh: WebUI 端口
+ labelEn: WebUI port
+ required: true
+ rule: paramPort
+ type: number
+ - default: "127.0.0.1"
+ edit: true
+ envKey: DB_HOSTNAME
+ labelZh: 数据库 主机地址
+ labelEn: Database Host
+ required: true
+ type: text
+ - default: 5432
+ edit: true
+ envKey: DB_PORT
+ labelZh: 数据库 端口
+ labelEn: Database Port
+ required: true
+ rule: paramPort
+ type: number
+ - default: "surveyking"
+ edit: true
+ envKey: DB_NAME
+ labelZh: 数据库 名称
+ labelEn: Database Name
+ required: true
+ rule: paramCommon
+ type: text
+ - default: "surveyking"
+ edit: true
+ envKey: MYSQL_USER
+ labelZh: 数据库 用户名
+ labelEn: Database Username
+ required: true
+ type: text
+ - default: ""
+ edit: true
+ envKey: MYSQL_PASS
+ labelZh: 数据库 密码
+ labelEn: Database Password
+ random: true
+ required: true
+ rule: paramComplexity
+ type: password
diff --git a/apps/surveyking/1.8.2/docker-compose.yml b/apps/surveyking/1.8.2/docker-compose.yml
new file mode 100644
index 00000000..849efc9c
--- /dev/null
+++ b/apps/surveyking/1.8.2/docker-compose.yml
@@ -0,0 +1,24 @@
+networks:
+ 1panel-network:
+ external: true
+
+services:
+ surveyking:
+ image: surveyking/surveyking:v1.8.2
+ container_name: ${CONTAINER_NAME}
+ labels:
+ createdBy: "Apps"
+ restart: always
+ networks:
+ - 1panel-network
+ ports:
+ - ${PANEL_APP_PORT_HTTP}:1991
+ env_file:
+ - ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
+ - ${ENV_FILE:-/etc/1panel/envs/default.env}
+ volumes:
+ - ${SURVEYKING_ROOT_PATH}/files:/app/files
+ - ${SURVEYKING_ROOT_PATH}/logs:/app/logs
+ environment:
+ - PROFILE=mysql
+ - DB_URL=jdbc:mysql://${DB_HOSTNAME}:${DB_PORT}/${DB_NAME}
diff --git a/apps/surveyking/1.8.2/envs/default.env b/apps/surveyking/1.8.2/envs/default.env
new file mode 100644
index 00000000..cd05f46e
--- /dev/null
+++ b/apps/surveyking/1.8.2/envs/default.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+ENV_FILE=.env
diff --git a/apps/surveyking/1.8.2/envs/global.env b/apps/surveyking/1.8.2/envs/global.env
new file mode 100644
index 00000000..e10989fe
--- /dev/null
+++ b/apps/surveyking/1.8.2/envs/global.env
@@ -0,0 +1,2 @@
+# copyright© 2024 XinJiang Ms Studio
+TZ=Asia/Shanghai
diff --git a/apps/surveyking/1.8.2/scripts/init.sh b/apps/surveyking/1.8.2/scripts/init.sh
new file mode 100644
index 00000000..07fb8c3f
--- /dev/null
+++ b/apps/surveyking/1.8.2/scripts/init.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/surveyking/1.8.2/scripts/uninstall.sh b/apps/surveyking/1.8.2/scripts/uninstall.sh
new file mode 100644
index 00000000..c86c4fbc
--- /dev/null
+++ b/apps/surveyking/1.8.2/scripts/uninstall.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/surveyking/1.8.2/scripts/upgrade.sh b/apps/surveyking/1.8.2/scripts/upgrade.sh
new file mode 100644
index 00000000..07fb8c3f
--- /dev/null
+++ b/apps/surveyking/1.8.2/scripts/upgrade.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+if [ -f .env ]; then
+ source .env
+
+ # setup-1 add default values
+ CURRENT_DIR=$(pwd)
+ sed -i '/^ENV_FILE=/d' .env
+ sed -i '/^GLOBAL_ENV_FILE=/d' .env
+ echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
+ echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
+
+ echo "Check Finish."
+
+else
+ echo "Error: .env file not found."
+fi
diff --git a/apps/surveyking/README.md b/apps/surveyking/README.md
new file mode 100644
index 00000000..2e0698ce
--- /dev/null
+++ b/apps/surveyking/README.md
@@ -0,0 +1,37 @@
+# 卷王
+
+卷王问卷,人人都可快速部署的的问卷考试系统,你可以在此完成在线表单设计,数据收集、统计和分析工作,应用场景覆盖全行业。
+
+![卷王](https://file.lifebus.top/imgs/surveyking_cover.png)
+
+![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
+
+## 特性
+
+### 问卷调查
+
+题型多样,洞悉客户心声
+
+自由创建,题型多样,逻辑编排、数据校验、问卷设置能力遥遥领先,多渠道发布,多终端管理,数据结果清晰可视化,一键下载报告,让问卷工作不再繁琐。
+
+### 在线考试
+
+轻松考试,即刻评分
+
+题库抽题,随机抽题,客观题自动算分,主观题人工打分,防作弊配置,自动显示正确答案和解析,证书在线编制和发放,全流程、轻量化考试解决方案。
+
+### 多维测评
+
+精准测评,专业报告
+
+自由设计测评题目、测评维度、在线编制维度报告,不管是专业的量表试题,还是出具专业的MBTI维度报告,都能轻松快捷应对。
+
+### 数据查询
+
+高效数据处理,智能输出
+
+轻松创建数据查询和分享系统,可以在线完成数据填报、查询和修改。多样化的数据分析选项,数据编码、SPSS导出、Excel导出、实时数据统计报告。
+
+---
+
+![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
diff --git a/apps/surveyking/data.yml b/apps/surveyking/data.yml
new file mode 100644
index 00000000..94ff8fad
--- /dev/null
+++ b/apps/surveyking/data.yml
@@ -0,0 +1,14 @@
+additionalProperties:
+ key: surveyking
+ name: 卷王
+ tags:
+ - WebSite
+ - Local
+ shortDescZh: 卷王问卷考试系统
+ shortDescEn: SurveyKing is a survey and exam system
+ type: website
+ crossVersionUpdate: true
+ limit: 0
+ website: https://surveyking.cn/
+ github: https://github.com/javahuang/surveyking/
+ document: https://surveyking.cn/help/quickstart/
diff --git a/apps/surveyking/logo.png b/apps/surveyking/logo.png
new file mode 100644
index 00000000..ff6c1372
Binary files /dev/null and b/apps/surveyking/logo.png differ