mirror of
https://github.com/okxlin/appstore.git
synced 2025-07-14 05:12:19 +08:00
feat:重新添加被bot删除的Meting-API PR #1370
This commit is contained in:
parent
67b585caf0
commit
e96cf7b0a7
24
apps/meting/README.md
Normal file
24
apps/meting/README.md
Normal file
@ -0,0 +1,24 @@
|
||||
# Meting
|
||||
|
||||
## 简介
|
||||
Meting 是一个开源的音乐 API 服务。
|
||||
|
||||
## 安装步骤
|
||||
1. 确保已经安装并配置好 Docker 和 1Panel。
|
||||
2. 按照提示填写相关配置参数并完成安装。
|
||||
3. 反向代理时添加如下内容
|
||||
```
|
||||
location /meting/ {
|
||||
proxy_pass http://localhost:3000/;
|
||||
proxy_set_header X-Forwarded-Host $scheme://$host:$server_port/meting;
|
||||
}
|
||||
```
|
||||
|
||||
## 升级
|
||||
- 目前没有升级脚本,直接重新部署最新版本即可。
|
||||
|
||||
## 卸载
|
||||
- 删除 Docker 容器和相关数据即可。
|
||||
|
||||
## 文档
|
||||
- 详细使用文档请参考 [官方文档](https://github.com/xizeyoupan/Meting-API)。
|
20
apps/meting/data.yml
Normal file
20
apps/meting/data.yml
Normal file
@ -0,0 +1,20 @@
|
||||
name: Meting
|
||||
tags:
|
||||
- 工具
|
||||
title: 开源音乐API服务
|
||||
type: 工具
|
||||
description: Meting 是一个开源的音乐 API 服务
|
||||
additionalProperties:
|
||||
key: meting
|
||||
name: Meting
|
||||
tags:
|
||||
- Tool
|
||||
shortDescZh: 开源音乐API服务
|
||||
shortDescEn: Open-source music API service
|
||||
type: tool
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
recommend: 0
|
||||
website: https://github.com/xizeyoupan/Meting-API
|
||||
github: https://github.com/xizeyoupan/Meting-API
|
||||
document: https://github.com/xizeyoupan/Meting-API
|
2
apps/meting/latest/.env.sample
Normal file
2
apps/meting/latest/.env.sample
Normal file
@ -0,0 +1,2 @@
|
||||
CONTAINER_NAME="meting"
|
||||
PANEL_APP_PORT_HTTP="3000"
|
10
apps/meting/latest/data.yml
Normal file
10
apps/meting/latest/data.yml
Normal file
@ -0,0 +1,10 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "3000"
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelEn: Port
|
||||
labelZh: 端口
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
16
apps/meting/latest/docker-compose.yml
Normal file
16
apps/meting/latest/docker-compose.yml
Normal file
@ -0,0 +1,16 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
meting:
|
||||
container_name: ${CONTAINER_NAME}
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- "${PANEL_APP_PORT_HTTP}:3000"
|
||||
image: intemd/meting-api:latest
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
BIN
apps/meting/logo.png
Normal file
BIN
apps/meting/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
Loading…
Reference in New Issue
Block a user