mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-12-04 23:42:23 +08:00
发布应用 问题反馈平台 (替兔小巢)
Signed-off-by: Meng Sen <qyg2297248353@gmail.com>
This commit is contained in:
parent
8abb19d50f
commit
4fbd7ae6ad
89
apps/feedback/1.0.2/data.yml
Normal file
89
apps/feedback/1.0.2/data.yml
Normal file
@ -0,0 +1,89 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- child:
|
||||
default: ""
|
||||
envKey: PANEL_DB_HOST
|
||||
required: true
|
||||
type: service
|
||||
default: mariadb
|
||||
edit: true
|
||||
envKey: PANEL_DB_TYPE
|
||||
labelZh: MySQL 服务 (前置检查)
|
||||
labelEn: Database Service (Pre-check)
|
||||
required: true
|
||||
type: apps
|
||||
values:
|
||||
- label: MariaDB
|
||||
value: mariadb
|
||||
- label: MySQL
|
||||
value: mysql
|
||||
- label: Percona
|
||||
value: percona
|
||||
- default: "/home/feedback"
|
||||
edit: true
|
||||
envKey: BAOTA_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 8080
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "http://127.0.0.18080"
|
||||
edit: true
|
||||
envKey: FEEDBACK_WEBSITE
|
||||
labelZh: 访问地址
|
||||
labelEn: Access Address
|
||||
required: true
|
||||
type: text
|
||||
- default: "备案号"
|
||||
edit: true
|
||||
envKey: FEEDBACK_BEI_AN
|
||||
labelZh: 备案号
|
||||
labelEn: Record Number
|
||||
required: true
|
||||
type: text
|
||||
- default: "127.0.0.1"
|
||||
edit: true
|
||||
envKey: DB_HOSTNAME
|
||||
labelZh: 数据库 主机地址
|
||||
labelEn: Database Host
|
||||
required: true
|
||||
type: text
|
||||
- default: 5432
|
||||
edit: true
|
||||
envKey: DB_PORT
|
||||
labelZh: 数据库 端口
|
||||
labelEn: Database Port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "feedback"
|
||||
edit: true
|
||||
envKey: DB_NAME
|
||||
labelZh: 数据库 名称
|
||||
labelEn: Database Name
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: "feedback"
|
||||
edit: true
|
||||
envKey: MYSQL_USERNAME
|
||||
labelZh: 数据库 用户名
|
||||
labelEn: Database Username
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: MYSQL_PASSWORD
|
||||
labelZh: 数据库 密码
|
||||
labelEn: Database Password
|
||||
random: true
|
||||
required: true
|
||||
rule: paramComplexity
|
||||
type: password
|
22
apps/feedback/1.0.2/docker-compose.yml
Normal file
22
apps/feedback/1.0.2/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
|
||||
services:
|
||||
feedback:
|
||||
image: q2316367743/feedback:1.0.2
|
||||
container_name: ${CONTAINER_NAME}
|
||||
labels:
|
||||
createdBy: "Apps"
|
||||
restart: always
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:8080
|
||||
env_file:
|
||||
- ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env}
|
||||
- ${ENV_FILE:-/etc/1panel/envs/default.env}
|
||||
volumes:
|
||||
- ${FEEDBACK_ROOT_PATH}/data:/app/public/data
|
||||
environment:
|
||||
- MYSQL_URL=jdbc:mariadb://${DB_HOSTNAME}:${DB_PORT}/${DB_NAME}?characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai
|
2
apps/feedback/1.0.2/envs/default.env
Normal file
2
apps/feedback/1.0.2/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
apps/feedback/1.0.2/envs/global.env
Normal file
2
apps/feedback/1.0.2/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
17
apps/feedback/1.0.2/scripts/init.sh
Normal file
17
apps/feedback/1.0.2/scripts/init.sh
Normal file
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
10
apps/feedback/1.0.2/scripts/uninstall.sh
Normal file
10
apps/feedback/1.0.2/scripts/uninstall.sh
Normal file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
17
apps/feedback/1.0.2/scripts/upgrade.sh
Normal file
17
apps/feedback/1.0.2/scripts/upgrade.sh
Normal file
@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
# setup-1 add default values
|
||||
CURRENT_DIR=$(pwd)
|
||||
sed -i '/^ENV_FILE=/d' .env
|
||||
sed -i '/^GLOBAL_ENV_FILE=/d' .env
|
||||
echo "ENV_FILE=${CURRENT_DIR}/.env" >> .env
|
||||
echo "GLOBAL_ENV_FILE=${CURRENT_DIR}/envs/global.env" >> .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
17
apps/feedback/README.md
Normal file
17
apps/feedback/README.md
Normal file
@ -0,0 +1,17 @@
|
||||
# 问题反馈平台 (替兔小巢)
|
||||
|
||||
由于兔小巢将于2024-11-30日之后,限制免费版的使用,所以开发了这个问题反馈平台。
|
||||
|
||||
![问题反馈平台](https://file.lifebus.top/imgs/feedback_q23163677431_cover.png)
|
||||
|
||||
![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue)
|
||||
|
||||
## 安装说明
|
||||
|
||||
> 默认用户名:`admin`
|
||||
>
|
||||
> 默认密码:`123456`
|
||||
|
||||
---
|
||||
|
||||
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
15
apps/feedback/data.yml
Normal file
15
apps/feedback/data.yml
Normal file
@ -0,0 +1,15 @@
|
||||
additionalProperties:
|
||||
key: feedback
|
||||
name: 问题反馈平台
|
||||
tags:
|
||||
- WebSite
|
||||
- Middleware
|
||||
- Local
|
||||
shortDescZh: 问题反馈平台 (替兔小巢)
|
||||
shortDescEn: Feedback platform (replace Tu Xiaochao)
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://gitcode.com/q23163677431/feedback-docker/
|
||||
github: https://gitcode.com/q23163677431/feedback-docker/
|
||||
document: https://gitcode.com/q23163677431/feedback-docker/
|
BIN
apps/feedback/logo.png
Normal file
BIN
apps/feedback/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Loading…
Reference in New Issue
Block a user