mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
发布应用 NapCat
This commit is contained in:
@@ -129,6 +129,7 @@
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/percona/logo.png" width="22"/> | Percona | https://www.percona.com/ | 【MySQL分支】关系数据库管理系统 | MySQL |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/n8n/logo.png" width="22"/> | n8n | https://n8n.io/ | 为技术团队提供安全的工作流自动化 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/nacos/logo.png" width="22"/> | Nacos | https://nacos.io/ | 动态服务发现、配置管理和服务管理平台 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/napcat/logo.png" width="22"/> | NapCat | https://napneko.github.io/ | 基于 NTQQ 的现代协议端框架 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/neko/logo.png" width="22"/> | Neko | https://neko.m1k1o.net/ | 虚拟浏览器 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/nexus3/logo.png" width="22"/> | Nexus3 | https://sonatype.com/ | Sonatype Nexus存储库 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/nexusphp/logo.png" width="22"/> | NexusPHP | https://nexusphp.org/ | 完整的 PT 建站解决方案 | |
|
||||
|
||||
@@ -124,6 +124,7 @@
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/percona/logo.png" width="22"/> | Percona | https://www.percona.com/ | 【MySQL分支】关系数据库管理系统 | MySQL |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/n8n/logo.png" width="22"/> | n8n | https://n8n.io/ | 为技术团队提供安全的工作流自动化 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/nacos/logo.png" width="22"/> | Nacos | https://nacos.io/ | 动态服务发现、配置管理和服务管理平台 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/napcat/logo.png" width="22"/> | NapCat | https://napneko.github.io/ | 基于 NTQQ 的现代协议端框架 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/neko/logo.png" width="22"/> | Neko | https://neko.m1k1o.net/ | 虚拟浏览器 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/nexus3/logo.png" width="22"/> | Nexus3 | https://sonatype.com/ | Sonatype Nexus存储库 | |
|
||||
| 🟢 | <img height="22" src="https://file.lifebus.top/apps/nexusphp/logo.png" width="22"/> | NexusPHP | https://nexusphp.org/ | 完整的 PT 建站解决方案 | |
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/napcat"
|
||||
edit: true
|
||||
envKey: NAPCAT_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 6099
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 3000
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_ONEBOT_HTTP
|
||||
labelZh: OneBot HTTP 端口
|
||||
labelEn: OneBot HTTP port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 3001
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_ONEBOT_WS
|
||||
labelZh: OneBot WebSocket 端口
|
||||
labelEn: OneBot WebSocket port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 0
|
||||
edit: true
|
||||
envKey: NAPCAT_UID
|
||||
labelZh: UID
|
||||
labelEn: UID
|
||||
required: true
|
||||
type: number
|
||||
- default: 0
|
||||
edit: true
|
||||
envKey: NAPCAT_GID
|
||||
labelZh: GID
|
||||
labelEn: GID
|
||||
required: true
|
||||
type: number
|
||||
@@ -0,0 +1,27 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
napcat:
|
||||
image: mlikiowa/napcat-docker:v4.9.81
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:6099
|
||||
- ${PANEL_APP_PORT_ONEBOT_HTTP}:3000
|
||||
- ${PANEL_APP_PORT_ONEBOT_WS}:3001
|
||||
env_file:
|
||||
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
|
||||
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
||||
volumes:
|
||||
- ${NAPCAT_ROOT_PATH}/data:/app/.config/QQ
|
||||
- ${NAPCAT_ROOT_PATH}/napcat:/app/napcat/config
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- NAPCAT_UID=${NAPCAT_UID:-0}
|
||||
- NAPCAT_GID=${NAPCAT_GID:-0}
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
@@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -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
|
||||
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -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
|
||||
@@ -0,0 +1,22 @@
|
||||
# NapCat
|
||||
|
||||
基于 NTQQ 的现代协议端框架
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 使用说明
|
||||
|
||||
> 查看Token
|
||||
>
|
||||
> 默认登录Token: `napcat`
|
||||
>
|
||||
> 请通过日志查看 实际 Token
|
||||
|
||||
扫描登录即可
|
||||
|
||||
---
|
||||
|
||||

|
||||

|
||||
@@ -0,0 +1,17 @@
|
||||
additionalProperties:
|
||||
key: napcat
|
||||
name: NapCat
|
||||
tags:
|
||||
- WebSite
|
||||
- Local
|
||||
shortDescZh: 基于 NTQQ 的现代协议端框架
|
||||
shortDescEn: Modern protocol-side framework based on NTQQ
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://napneko.github.io/
|
||||
github: https://github.com/NapNeko/NapCatQQ/
|
||||
document: https://napneko.github.io/
|
||||
architectures:
|
||||
- amd64
|
||||
- arm64
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
Reference in New Issue
Block a user