diff --git a/apps/tangsengdaodao/1.5.0/data.yml b/apps/tangsengdaodao/1.5.0/data.yml deleted file mode 100644 index f913d7bb..00000000 --- a/apps/tangsengdaodao/1.5.0/data.yml +++ /dev/null @@ -1,146 +0,0 @@ -additionalProperties: - formFields: - - default: "" - envKey: EXTERNAL_IP - labelEn: External IP - labelZh: 外部访问IP - required: true - type: text - - default: "" - envKey: PANEL_DB_HOST - key: mysql - labelEn: Database Service - labelZh: 数据库服务 - required: true - type: service - - default: tsdd - envKey: PANEL_DB_NAME - labelEn: Database - labelZh: 数据库名 - random: true - required: true - rule: paramCommon - type: text - - default: tsdd - envKey: PANEL_DB_USER - labelEn: User - labelZh: 数据库用户 - random: true - required: true - rule: paramCommon - type: text - - default: tsdd@123456 - envKey: PANEL_DB_USER_PASSWORD - labelEn: Password - labelZh: 数据库用户密码 - random: true - required: true - rule: paramComplexity - type: password - - default: "" - edit: true - envKey: TS_DB_REDIS_HOST - key: redis - labelEn: Redis Service - labelZh: 缓存服务服务 - required: true - type: service - - default: 6379 - envKey: TS_DB_REDIS_PORT - labelEn: Redis Port - labelZh: 缓存服务端口 - required: true - type: number - - default: "" - edit: true - envKey: TS_DB_REDISPASS - labelEn: Redis Service Password - labelZh: 缓存服务服务密码 - required: true - rule: paramCommon - type: password - - default: "" - edit: true - envKey: MINIO_HOST - key: minio - labelEn: Minio Service - labelZh: minio对象存储服务 - required: true - type: service - - default: 9000 - envKey: MINIO_PORT - labelEn: minio port - labelZh: minio 端口 - required: true - type: number - - default: minio - envKey: MINIO_ROOT_USER - labelEn: minio - labelZh: minio用户 - random: true - required: true - rule: paramCommon - type: text - - default: 123456 - envKey: MINIO_ROOT_PASSWORD - labelEn: MinioPassword - labelZh: minio用户密码 - random: true - required: true - rule: paramComplexity - type: password - - default: 5100 - envKey: PANEL_APP_PORT_WK_TCP - labelEn: WuKongIM tcp port - labelZh: 悟空IM TCP端口 - required: true - type: number - - default: 5200 - envKey: PANEL_APP_PORT_WK_WS - labelEn: WuKongIM ws port - labelZh: 悟空IM WS端口 - required: true - type: number - - default: 5300 - envKey: PANEL_APP_PORT_WK_WEB_SERVER - labelEn: WuKongIM web port - labelZh: 悟空IM监控端口 - required: true - type: number - - default: 123456 - envKey: TS_SMSCODE - labelEn: SMS - labelZh: 唐僧叨叨短信验证码 - required: true - type: number - - default: superAdmin - disabled: true - envKey: TS_ADMIN - labelEn: Super Admin User - labelZh: 唐僧叨叨超级管理员 - required: true - type: text - - default: tsdd@123456 - envKey: TS_ADMINPWD - labelEn: Admin Password - labelZh: 唐僧叨叨超级管理员默认密码 - required: true - type: text - - default: 8090 - envKey: PANEL_APP_PORT_TS_APP_HTTP - labelEn: TangSengDaoDao port - labelZh: 唐僧叨叨端口 - required: true - type: number - - default: 82 - envKey: PANEL_APP_PORT_TS_APP_WEB - labelEn: TangSengDaoDao web port - labelZh: 唐僧叨叨WEB端口 - required: true - type: number - - default: 83 - envKey: PANEL_APP_PORT_TS_APP_MANAGER - labelEn: TangSengDaoDao Management background port - labelZh: 唐僧叨叨管理后台端口 - required: true - type: number diff --git a/apps/tangsengdaodao/1.5.0/docker-compose.yml b/apps/tangsengdaodao/1.5.0/docker-compose.yml deleted file mode 100644 index ec56fe66..00000000 --- a/apps/tangsengdaodao/1.5.0/docker-compose.yml +++ /dev/null @@ -1,81 +0,0 @@ -version: '1.5.0' -services: - tsddwukongim: - image: registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v1.1.8 - restart: always - ports: - - "${PANEL_APP_PORT_WK_TCP}:5100" - - "${PANEL_APP_PORT_WK_WS}:5200" - - "${PANEL_APP_PORT_WK_WEB_SERVER}:5300" - volumes: - - ./wukongim:/root/wukongim - environment: - - WK_MODE=release - - WK_EXTERNAL_IP=${EXTERNAL_IP} - - WK_CONVERSATION_ON=true - - WK_WEBHOOK_GRPCADDR=tangsengdaodaoserver:6979 - - WK_DATASOURCE_ADDR=http://tangsengdaodaoserver:8090/v1/datasource - - WK_DATASOURCE_CHANNELINFOON=true - - WK_TOKENAUTHON=true - networks: - - 1panel-network - labels: - createdBy: "Apps" - tangsengdaodaoserver: - image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoserver:v1.5.0 - restart: always - command: "api" - healthcheck: - test: "wget -q -Y off -O /dev/null http://localhost:8090/v1/ping > /dev/null 2>&1" - interval: 10s - timeout: 10s - retries: 3 - depends_on: - - tsddwukongim - ports: - - "${PANEL_APP_PORT_TS_APP_HTTP}:8090" - volumes: - - ./tsdd:/home/tsdddata - environment: - - TS_MODE=release - - TS_WUKONGIM_APIURL=http://tsddwukongim:5001 - - TS_DB_MYSQLADDR=${PANEL_DB_USER}:${PANEL_DB_USER_PASSWORD}@tcp(${PANEL_DB_HOST}:${PANEL_DB_PORT})/${PANEL_DB_NAME}?charset=utf8mb4&parseTime=true&loc=Local - - TS_DB_REDISADDR=${TS_DB_REDIS_HOST}:${TS_DB_REDIS_PORT} - - TS_DB_REDISPASS=${TS_DB_REDISPASS} - - TS_EXTERNAL_IP=${EXTERNAL_IP} - - TS_SMSCODE=${TS_SMSCODE} - - TS_ADMINPWD=${TS_ADMINPWD} - - TS_FILESERVICE=minio - - TS_MINIO_URL=http://${MINIO_HOST}:${MINIO_PORT} - - TS_MINIO_ACCESSKEYID=${MINIO_ROOT_USER} - - TS_MINIO_SECRETACCESSKEY=${MINIO_ROOT_PASSWORD} - - TS_AVATAR_DEFAULTBASEURL=https://api.multiavatar.com/{avatar}.png - networks: - - 1panel-network - labels: - createdBy: "Apps" - tangsengdaodaoweb: - image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaoweb:v1.0.0 - restart: always - environment: - - API_URL=http://${EXTERNAL_IP}:${PANEL_APP_PORT_TS_APP_HTTP}/ - ports: - - "${PANEL_APP_PORT_TS_APP_WEB}:80" - networks: - - 1panel-network - labels: - createdBy: "Apps" - tangsengdaodaomanager: - image: registry.cn-shanghai.aliyuncs.com/wukongim/tangsengdaodaomanager:v1.0.0 - restart: always - environment: - - API_URL=http://${EXTERNAL_IP}:${PANEL_APP_PORT_TS_APP_HTTP}/ - ports: - - "${PANEL_APP_PORT_TS_APP_MANAGER}:80" - networks: - - 1panel-network - labels: - createdBy: "Apps" -networks: - 1panel-network: - external: true \ No newline at end of file diff --git a/apps/tangsengdaodao/README.md b/apps/tangsengdaodao/README.md deleted file mode 100644 index 66fbd41d..00000000 --- a/apps/tangsengdaodao/README.md +++ /dev/null @@ -1,13 +0,0 @@ -# 什么是唐僧叨叨 - -**唐僧叨叨**是一款`轻量级`,`高性能`,`重安全`专注于`私有化部署`的`开源`即时通讯系统。 - -## 产品特性: - -- **开源免费**:服务端源码,APP源码,Web/PC端源码全部开源,Apache2.0开源协议(可商用),没人能拿捏你 -- **私有化部署**:所有程序和数据都在自己的服务器上,不用担心数据泄露,不用担心数据被用于其他用途 -- **消息必达**:采用 tcp + ack机制,保证消息必达,支持离线消息,支持消息漫游。 -- **内容安全**:消息传输采用私有二进制加密协议、DH+流式加密,防止消息内容泄露 -- **消息永久存储**:消息支持永久存储,得益于WuKongIM的自研消息db,永久存储不影响性能,只浪费点磁盘空间 -- **多设备消息同步**:支持 1 个移动端、多个 Web/PC 端同时在线时,并且支持多端之间的消息实时同步。 -- **全平台支持**:iOS,Android,Windows,MAC,Ubuntu,Web diff --git a/apps/tangsengdaodao/data.yml b/apps/tangsengdaodao/data.yml deleted file mode 100644 index 6be1eec2..00000000 --- a/apps/tangsengdaodao/data.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: TangSengDaoDao -tags: - - Tool -title: 让企业轻松拥有自己的即时通讯 -type: 工具 -description: 让企业轻松拥有自己的即时通讯 -additionalProperties: - key: tangsengdaodao - name: TangSengDaoDao - tags: - - Tool - shortDescZh: 让企业轻松拥有自己的即时通讯 - shortDescEn: Make it easy for businesses to have their own instant messaging - type: tool - crossVersionUpdate: true - limit: 0 - recommend: 0 - website: https://tsdaodao.com/ - github: https://github.com/TangSengDaoDao/TangSengDaoDaoServer - document: https://tsdaodao.com/ diff --git a/apps/tangsengdaodao/logo.png b/apps/tangsengdaodao/logo.png deleted file mode 100644 index 2cfe3682..00000000 Binary files a/apps/tangsengdaodao/logo.png and /dev/null differ diff --git a/apps/wukongim/1.1.8/data.yml b/apps/wukongim/1.1.8/data.yml deleted file mode 100644 index 6d11e028..00000000 --- a/apps/wukongim/1.1.8/data.yml +++ /dev/null @@ -1,39 +0,0 @@ -additionalProperties: - formFields: - - default: "" - envKey: EXTERNAL_IP - labelEn: ipAddress - labelZh: 外部访问IP - required: true - type: text - - default: 5001 - envKey: PANEL_APP_PORT_WK_API - labelEn: WuKongIM api port - labelZh: 悟空IM api端口 - required: true - type: number - - default: 5100 - envKey: PANEL_APP_PORT_WK_TCP - labelEn: WuKongIM tcp port - labelZh: 悟空IM TCP端口 - required: true - type: number - - default: 5200 - envKey: PANEL_APP_PORT_WK_WS - labelEn: WuKongIM ws port - labelZh: 悟空IM WS端口 - required: true - type: number - - default: "5300" - envKey: PANEL_APP_PORT_WK_WEB_SERVER - labelEn: WuKongIM web port - labelZh: 悟空IM监控端口 - required: true - type: number - - default: 5172 - envKey: PANEL_APP_PORT_WK_DEMO_SERVER - labelEn: WuKongIM demo port - labelZh: 悟空IM demo端口 - required: true - type: number - diff --git a/apps/wukongim/1.1.8/docker-compose.yml b/apps/wukongim/1.1.8/docker-compose.yml deleted file mode 100644 index 8dc854ad..00000000 --- a/apps/wukongim/1.1.8/docker-compose.yml +++ /dev/null @@ -1,26 +0,0 @@ -version: '1.1.8' -services: - wukongim: - image: registry.cn-shanghai.aliyuncs.com/wukongim/wukongim:v1.1.8 - restart: always - ports: - - "${PANEL_APP_PORT_WK_API}:5001" - - "${PANEL_APP_PORT_WK_TCP}:5100" - - "${PANEL_APP_PORT_WK_WS}:5200" - - "${PANEL_APP_PORT_WK_WEB_SERVER}:5300" - - "${PANEL_APP_PORT_WK_DEMO_SERVER}:5172" - volumes: - - ./wukongim:/root/wukongim - environment: - - WK_MODE=release - - WK_EXTERNAL_IP=${EXTERNAL_IP} - - WK_CONVERSATION_ON=true - - WK_DATASOURCE_CHANNELINFOON=true - - WK_TOKENAUTHON=true - networks: - - 1panel-network - labels: - createdBy: "Apps" -networks: - 1panel-network: - external: true diff --git a/apps/wukongim/README.md b/apps/wukongim/README.md deleted file mode 100644 index efe933ca..00000000 --- a/apps/wukongim/README.md +++ /dev/null @@ -1,12 +0,0 @@ -# 什么是悟空 IM - -高性能通用即时通讯服务,支持聊天应用,消息推送,物联网通讯,音视频信令,直播弹幕,客服系统,AI 通讯,即时社区等场景。 - -## 产品特性: - -- **零依赖**:没有依赖任何第三方组件,部署简单,一条命令即可启动 -- **完全自研**:自研消息数据库,消息分区永久存储,自研二进制协议,支持自定义协议 -- **安全**:消息通道和消息内容全程加密,防中间人攻击和窜改消息内容。 -- **性能强劲**:性能强劲,MAC 笔记本单机测试 16w 多/秒的消息(包含存储)吞吐量,频道支持万人同时订阅。 -- **扩展性强**:采用频道设计理念,目前支持群组频道,点对点频道,后续可以根据自己业务自定义频道可实现机器人频道,客服频道等等。 -- **兼容性强**:同时无差别支持 tcp,websocket。 diff --git a/apps/wukongim/data.yml b/apps/wukongim/data.yml deleted file mode 100644 index bb89d4a4..00000000 --- a/apps/wukongim/data.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: WuKongIM -tags: - - Tool -title: 让信息传递更简单 -type: 工具 -description: 让企业轻松拥有自己的即时通讯 -additionalProperties: - key: wukongim - name: WuKongIM - tags: - - Tool - shortDescZh: 让信息传递更简单 - shortDescEn: Make messaging easier - type: tool - crossVersionUpdate: true - limit: 0 - recommend: 0 - website: https://githubim.com/ - github: https://github.com/TangSengDaoDao/TangSengDaoDaoServer - document: https://githubim.com/ diff --git a/apps/wukongim/logo.png b/apps/wukongim/logo.png deleted file mode 100644 index 3ee5b050..00000000 Binary files a/apps/wukongim/logo.png and /dev/null differ