diff --git a/allinssl/data.yml b/allinssl/data.yml index c2010c8eb..7eaac8429 100644 --- a/allinssl/data.yml +++ b/allinssl/data.yml @@ -3,6 +3,7 @@ tags: - SSL - 证书管理 - 自动化运维 + - DevOps - 安全 title: SSL证书全流程管理工具,一站式证书生命周期解决方案 description: 一站式SSL证书生命周期管理工具,支持多家CA和多平台自动化部署,提供安全入口保护和证书状态监控。 @@ -11,9 +12,10 @@ additionalProperties: name: AllinSSL tags: - Tool + - DevOps shortDescZh: 一站式SSL证书生命周期管理解决方案,支持多家CA与多平台自动化运维 shortDescEn: One-stop SSL certificate lifecycle management tool with multi-CA and platform support - type: tool + type: website crossVersionUpdate: true limit: 0 website: https://github.com/allinssl/allinssl diff --git a/chatnio/README.md b/chatnio/README.md new file mode 100644 index 000000000..af0f12c9b --- /dev/null +++ b/chatnio/README.md @@ -0,0 +1,24 @@ +* + +*
+ + ![chatnio](https://github.com/Deeptrain-Community/chatnio/raw/main/app/public/logo.png) + + # [Chat Nio](https://chatnio.net) + + _🚀 **下一代 AI 一站式解决方案**_ + + _🚀 **Next Generation AI One-Stop Solution**_ + + + [官网](https://chatnio.net) | [开放文档](https://docs.chatnio.net) | [SDKs](https://docs.chatnio.net/developers/sdk) | [QQ 群](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=1mv1Y8SyxnQVvQCoqhmIgVTbwQmkNmvQ&authKey=5KUA9nJPR29nQwjbsYNknN2Fj6cKePkRes%2B1QZy84Dr4GHYVzcvb0yklxiMMNVJN&noverify=0&group_code=749482576) + + [English](https://github.com/Deeptrain-Community/chatnio/blob/master/README.md) | 简体中文 + + [![code-stats](https://stats.deeptrain.net/repo/Deeptrain-Community/chatnio)](https://stats.deeptrain.net) + +
+ + # 使用说明 + + 部署成功后, 管理员账号为 `root` , 密码默认为 `chatnio123456` \ No newline at end of file diff --git a/chatnio/data.yml b/chatnio/data.yml new file mode 100644 index 000000000..366dc32fd --- /dev/null +++ b/chatnio/data.yml @@ -0,0 +1,19 @@ +name: Chat Nio +tags: + - AI / 大模型 +title: 下一代 AI 一站式解决方案 +description: 下一代 AI 一站式解决方案 +additionalProperties: + key: chatnio + name: Chat Nio + tags: + - AI + shortDescZh: 下一代 AI 一站式解决方案 + shortDescEn: Next Generation AI One-Stop Internationalization Solution + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://chatnio.com + github: https://github.com/Deeptrain-Community/chatnio + document: https://chatnio.com/guide \ No newline at end of file diff --git a/chatnio/latest/data.yml b/chatnio/latest/data.yml new file mode 100644 index 000000000..431bd80de --- /dev/null +++ b/chatnio/latest/data.yml @@ -0,0 +1,99 @@ +additionalProperties: + formFields: + - default: 40249 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + - default: mysql + envKey: PANEL_DB_TYPE + labelEn: Database Service + labelZh: 数据库服务 + label: + en: Database Service + ja: データベースサービス + ms: Perkhidmatan Pangkalan Data + pt-br: Serviço de Banco de Dados + ru: Сервис базы данных + ko: 데이터베이스 서비스 + zh: 数据库服务 + zh-Hant: 數據庫 服務 + required: true + type: apps + child: + default: "" + envKey: PANEL_DB_HOST + required: true + type: service + values: + - label: MySQL + value: mysql + - label: MariaDB + value: mariadb + - default: chatnio + envKey: PANEL_DB_NAME + labelEn: Database + labelZh: 数据库名 + random: true + required: true + rule: paramCommon + type: text + - default: chatnio + envKey: PANEL_DB_USER + labelEn: User + labelZh: 数据库用户 + random: true + required: true + rule: paramCommon + type: text + - default: chatnio + envKey: PANEL_DB_USER_PASSWORD + labelEn: Password + labelZh: 数据库用户密码 + random: true + required: true + rule: paramComplexity + type: password + - default: "" + edit: true + envKey: REDIS_HOST + key: redis + labelEn: Redis Service + labelZh: Redis服务 + required: true + type: service + - default: "6379" + edit: true + envKey: REDIS_PORT + labelEn: Redis Service Port + labelZh: Redis服务端口 + required: true + rule: paramPort + type: number + - default: "" + envKey: PANEL_REDIS_ROOT_PASSWORD + labelEn: Redis Password + labelZh: Redis 密码 + required: true + type: password + - default: "5" + envKey: REDIS_DB + labelEn: Redis Database + labelZh: Redis 数据库 + required: true + type: number + - default: "true" + edit: true + envKey: SERVE_STATIC + labelEn: Serve Static + labelZh: 是否启用静态文件服务 + required: true + type: select + values: + - label: "true" + value: "true" + - label: "false" + value: "false" \ No newline at end of file diff --git a/chatnio/latest/docker-compose.yml b/chatnio/latest/docker-compose.yml new file mode 100644 index 000000000..d2837f9eb --- /dev/null +++ b/chatnio/latest/docker-compose.yml @@ -0,0 +1,34 @@ +version: '3' +services: + chatnio: + image: programzmh/chatnio:latest # chatnio-cot:latest + container_name: ${CONTAINER_NAME} + restart: always + ports: + - "${PANEL_APP_PORT_HTTP}:8094" + ulimits: + nofile: + soft: 65535 + hard: 65535 + environment: + MYSQL_HOST: "${PANEL_DB_HOST}" + MYSQL_USER: "${PANEL_DB_USER}" + MYSQL_PASSWORD: "${PANEL_DB_USER_PASSWORD}" + MYSQL_DB: "${PANEL_DB_NAME}" + REDIS_HOST: "${REDIS_HOST}" + REDIS_PORT: "${REDIS_PORT}" + REDIS_PASSWORD: "${PANEL_REDIS_ROOT_PASSWORD}" + REDIS_DB: "${REDIS_DB}" + SERVE_STATIC: "${SERVE_STATIC}" + volumes: + - ./data/config:/config + - ./data/logs:/logs + - ./data/storage:/storage +# - ./data/my-pic:/app/dist/my-pic +# - ./data/favicon.ico:/app/dist/favicon.ico + networks: + - 1panel-network + +networks: + 1panel-network: + external: true \ No newline at end of file diff --git a/chatnio/logo.png b/chatnio/logo.png new file mode 100644 index 000000000..4ad4d85cc Binary files /dev/null and b/chatnio/logo.png differ diff --git a/clear/data.yml b/clear/data.yml index 9e698f2d7..b40a2880c 100644 --- a/clear/data.yml +++ b/clear/data.yml @@ -12,7 +12,7 @@ additionalProperties: - Tool shortDescZh: 简洁高效的待办事项管理应用,支持容器化部署与多平台适配 shortDescEn: A modern, efficient to-do management app with container deployment and multi-platform support - type: tool + type: website crossVersionUpdate: true limit: 0 website: https://github.com/WindyDante/Clear diff --git a/ech0/data.yml b/ech0/data.yml index 1fc7a1cba..bc153cf9e 100644 --- a/ech0/data.yml +++ b/ech0/data.yml @@ -30,3 +30,4 @@ additionalProperties: ko: Markdown, RSS를 지원하는 가볍고 미니멀한 셀프 호스팅 게시 플랫폼입니다. architectures: - amd64 + - arm64 diff --git a/umami-mysql/data.yml b/umami-mysql/data.yml index b4ceb175c..2c0ce96cf 100644 --- a/umami-mysql/data.yml +++ b/umami-mysql/data.yml @@ -26,4 +26,5 @@ additionalProperties: ru: Простая, быстрая и ориентированная на конфиденциальность альтернатива Google Analytics ko: Google Analytics에 대한 간단하고 빠르며 개인 정보 보호 중심의 대안 architectures: - - amd64 \ No newline at end of file + - amd64 + - arm64 \ No newline at end of file diff --git a/vaultwarden-mysql/data.yml b/vaultwarden-mysql/data.yml index 66239758b..87df810ec 100644 --- a/vaultwarden-mysql/data.yml +++ b/vaultwarden-mysql/data.yml @@ -30,3 +30,4 @@ additionalProperties: ko: Bitwarden 클라이언트와 호환되는 가볍고 안전한 셀프 호스팅 비밀번호 관리자입니다. architectures: - amd64 + - arm64 diff --git a/vaultwarden-sqlite/data.yml b/vaultwarden-sqlite/data.yml index 9391ee43b..db962156c 100644 --- a/vaultwarden-sqlite/data.yml +++ b/vaultwarden-sqlite/data.yml @@ -30,3 +30,4 @@ additionalProperties: ko: Bitwarden 클라이언트와 호환되는 가볍고 안전한 셀프 호스팅 비밀번호 관리자입니다. architectures: - amd64 + - arm64