feat:添加minichat到列表
This commit is contained in:
parent
37f3580e9f
commit
a8dd2051f9
|
|
@ -0,0 +1,4 @@
|
||||||
|
CONFIG_PATH="./data/config.yaml"
|
||||||
|
CONTAINER_NAME="minichat"
|
||||||
|
PANEL_APP_PORT_HTTP=40276
|
||||||
|
TEMPLATE_NAME="bulma"
|
||||||
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
port: 8080
|
||||||
|
server_url: "" # 此处为html页面去请求服务器的地址,例子:8.8.8.8:8080 或 abc.com 或 abc.com:8080
|
||||||
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Minichat
|
||||||
|
|
||||||
|
Minichat 是一款Go语言实现的极简、极轻、无痕匿名聊天工具,
|
||||||
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
CONFIG_PATH="./data/config.yaml"
|
||||||
|
CONTAINER_NAME="minichat"
|
||||||
|
PANEL_APP_PORT_HTTP=40276
|
||||||
|
TEMPLATE_NAME="bulma"
|
||||||
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
port: 8080
|
||||||
|
server_url: "" # 此处为html页面去请求服务器的地址,例子:8.8.8.8:8080 或 abc.com 或 abc.com:8080
|
||||||
|
|
@ -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
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
Loading…
Reference in New Issue