1
0
Fork 0

😁添加chatNio应用

This commit is contained in:
LiuShen 2025-06-26 17:08:51 +08:00
parent d3d5771431
commit d9cf65fd93
11 changed files with 185 additions and 3 deletions

View File

@ -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

24
chatnio/README.md Normal file
View File

@ -0,0 +1,24 @@
*
* <div align="center">
![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)
</div>
# 使用说明
部署成功后, 管理员账号为 `root` , 密码默认为 `chatnio123456`

19
chatnio/data.yml Normal file
View File

@ -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

99
chatnio/latest/data.yml Normal file
View File

@ -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"

View File

@ -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

BIN
chatnio/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

View File

@ -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

View File

@ -30,3 +30,4 @@ additionalProperties:
ko: Markdown, RSS를 지원하는 가볍고 미니멀한 셀프 호스팅 게시 플랫폼입니다.
architectures:
- amd64
- arm64

View File

@ -26,4 +26,5 @@ additionalProperties:
ru: Простая, быстрая и ориентированная на конфиденциальность альтернатива Google Analytics
ko: Google Analytics에 대한 간단하고 빠르며 개인 정보 보호 중심의 대안
architectures:
- amd64
- amd64
- arm64

View File

@ -30,3 +30,4 @@ additionalProperties:
ko: Bitwarden 클라이언트와 호환되는 가볍고 안전한 셀프 호스팅 비밀번호 관리자입니다.
architectures:
- amd64
- arm64

View File

@ -30,3 +30,4 @@ additionalProperties:
ko: Bitwarden 클라이언트와 호환되는 가볍고 안전한 셀프 호스팅 비밀번호 관리자입니다.
architectures:
- amd64
- arm64