mirror of
https://github.com/okxlin/appstore.git
synced 2026-02-21 18:37:41 +08:00
feat:添加minichat到列表
This commit is contained in:
parent
e6164b17da
commit
f5e9c0ae58
4
apps/minichat/0.0.9/.env.sample
Normal file
4
apps/minichat/0.0.9/.env.sample
Normal file
@ -0,0 +1,4 @@
|
||||
CONFIG_PATH="./data/config.yaml"
|
||||
CONTAINER_NAME="minichat"
|
||||
PANEL_APP_PORT_HTTP=40276
|
||||
TEMPLATE_NAME="bulma"
|
||||
24
apps/minichat/0.0.9/data.yml
Normal file
24
apps/minichat/0.0.9/data.yml
Normal 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
|
||||
2
apps/minichat/0.0.9/data/config.yaml
Normal file
2
apps/minichat/0.0.9/data/config.yaml
Normal file
@ -0,0 +1,2 @@
|
||||
port: 8080
|
||||
server_url: "" # 此处为html页面去请求服务器的地址,例子:8.8.8.8:8080 或 abc.com 或 abc.com:8080
|
||||
19
apps/minichat/0.0.9/docker-compose.yml
Normal file
19
apps/minichat/0.0.9/docker-compose.yml
Normal 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
3
apps/minichat/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Minichat
|
||||
|
||||
Minichat 是一款Go语言实现的极简、极轻、无痕匿名聊天工具,
|
||||
19
apps/minichat/data.yml
Normal file
19
apps/minichat/data.yml
Normal 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
|
||||
4
apps/minichat/latest/.env.sample
Normal file
4
apps/minichat/latest/.env.sample
Normal file
@ -0,0 +1,4 @@
|
||||
CONFIG_PATH="./data/config.yaml"
|
||||
CONTAINER_NAME="minichat"
|
||||
PANEL_APP_PORT_HTTP=40276
|
||||
TEMPLATE_NAME="bulma"
|
||||
24
apps/minichat/latest/data.yml
Normal file
24
apps/minichat/latest/data.yml
Normal 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
|
||||
2
apps/minichat/latest/data/config.yaml
Normal file
2
apps/minichat/latest/data/config.yaml
Normal file
@ -0,0 +1,2 @@
|
||||
port: 8080
|
||||
server_url: "" # 此处为html页面去请求服务器的地址,例子:8.8.8.8:8080 或 abc.com 或 abc.com:8080
|
||||
19
apps/minichat/latest/docker-compose.yml
Normal file
19
apps/minichat/latest/docker-compose.yml
Normal 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
BIN
apps/minichat/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
Loading…
Reference in New Issue
Block a user