feat:添加minichat到列表

This commit is contained in:
okxlin 2024-08-04 01:07:34 +08:00
parent e6164b17da
commit f5e9c0ae58
11 changed files with 120 additions and 0 deletions

View File

@ -0,0 +1,4 @@
CONFIG_PATH="./data/config.yaml"
CONTAINER_NAME="minichat"
PANEL_APP_PORT_HTTP=40276
TEMPLATE_NAME="bulma"

View File

@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: "40276"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: "./data/config.yaml"
disabled: true
envKey: CONFIG_PATH
labelEn: Configuration Path
labelZh: 配置路径
required: true
type: text
- default: "bulma"
edit: true
envKey: TEMPLATE_NAME
labelEn: Template Name
labelZh: 模板名称
required: true
type: text

View File

@ -0,0 +1,2 @@
port: 8080
server_url: "" # 此处为html页面去请求服务器的地址例子8.8.8.8:8080 或 abc.com 或 abc.com:8080

View File

@ -0,0 +1,19 @@
services:
minichat:
image: "okhanyu/minichat:0.0.9"
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8080"
volumes:
- "${CONFIG_PATH}:/app/config.yaml"
environment:
- TEMPLATE_NAME=${TEMPLATE_NAME}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

3
apps/minichat/README.md Normal file
View File

@ -0,0 +1,3 @@
# Minichat
Minichat 是一款Go语言实现的极简、极轻、无痕匿名聊天工具

19
apps/minichat/data.yml Normal file
View File

@ -0,0 +1,19 @@
name: Minichat
tags:
- 建站
title: 极简聊天应用
description: 极简聊天应用
additionalProperties:
key: minichat
name: Minichat
tags:
- WebSite
shortDescZh: 极简聊天应用
shortDescEn: Minimalist chat application
type: website
crossVersionUpdate: true
limit: 0
recommend: 0
website: https://minichat.seeyou.me
github: https://github.com/okhanyu/minichat
document: https://github.com/okhanyu/minichat

View File

@ -0,0 +1,4 @@
CONFIG_PATH="./data/config.yaml"
CONTAINER_NAME="minichat"
PANEL_APP_PORT_HTTP=40276
TEMPLATE_NAME="bulma"

View File

@ -0,0 +1,24 @@
additionalProperties:
formFields:
- default: "40276"
edit: true
envKey: PANEL_APP_PORT_HTTP
labelEn: Port
labelZh: 端口
required: true
rule: paramPort
type: number
- default: "./data/config.yaml"
disabled: true
envKey: CONFIG_PATH
labelEn: Configuration Path
labelZh: 配置路径
required: true
type: text
- default: "bulma"
edit: true
envKey: TEMPLATE_NAME
labelEn: Template Name
labelZh: 模板名称
required: true
type: text

View File

@ -0,0 +1,2 @@
port: 8080
server_url: "" # 此处为html页面去请求服务器的地址例子8.8.8.8:8080 或 abc.com 或 abc.com:8080

View File

@ -0,0 +1,19 @@
services:
minichat:
image: "okhanyu/minichat:latest"
container_name: ${CONTAINER_NAME}
restart: always
networks:
- 1panel-network
ports:
- "${PANEL_APP_PORT_HTTP}:8080"
volumes:
- "${CONFIG_PATH}:/app/config.yaml"
environment:
- TEMPLATE_NAME=${TEMPLATE_NAME}
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true

BIN
apps/minichat/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB