mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-12-05 02:52:29 +08:00
Processed apps directory via GitHub Actions
Some checks are pending
Process Apps and Commit Changes / process (push) Waiting to run
Some checks are pending
Process Apps and Commit Changes / process (push) Waiting to run
This commit is contained in:
parent
22fd479585
commit
d0716bec44
30
appstore/feedback/1.0.2/.env
Normal file
30
appstore/feedback/1.0.2/.env
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# MySQL 服务 (前置检查) [必填]
|
||||||
|
PANEL_DB_TYPE=mariadb
|
||||||
|
|
||||||
|
# 数据持久化路径 [必填]
|
||||||
|
BAOTA_ROOT_PATH=/home/feedback
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8080
|
||||||
|
|
||||||
|
# 访问地址 [必填]
|
||||||
|
FEEDBACK_WEBSITE=http://127.0.0.18080
|
||||||
|
|
||||||
|
# 备案号 [必填]
|
||||||
|
FEEDBACK_BEI_AN=备案号
|
||||||
|
|
||||||
|
# 数据库 主机地址 [必填]
|
||||||
|
DB_HOSTNAME=127.0.0.1
|
||||||
|
|
||||||
|
# 数据库 端口 [必填]
|
||||||
|
DB_PORT=5432
|
||||||
|
|
||||||
|
# 数据库 名称 [必填]
|
||||||
|
DB_NAME=feedback
|
||||||
|
|
||||||
|
# 数据库 用户名 [必填]
|
||||||
|
MYSQL_USERNAME=feedback
|
||||||
|
|
||||||
|
# 数据库 密码 [必填]
|
||||||
|
MYSQL_PASSWORD=
|
||||||
|
|
89
appstore/feedback/1.0.2/data.yml
Normal file
89
appstore/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
|
21
appstore/feedback/1.0.2/docker-compose.yml
Normal file
21
appstore/feedback/1.0.2/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
feedback:
|
||||||
|
container_name: feedback
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- MYSQL_URL=jdbc:mariadb://${DB_HOSTNAME}:${DB_PORT}/${DB_NAME}?characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai
|
||||||
|
image: q2316367743/feedback:1.0.2
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:8080
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${FEEDBACK_ROOT_PATH}/data:/app/public/data
|
2
appstore/feedback/1.0.2/envs/default.env
Normal file
2
appstore/feedback/1.0.2/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/feedback/1.0.2/envs/global.env
Normal file
2
appstore/feedback/1.0.2/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/feedback/1.0.2/scripts/init.sh
Normal file
17
appstore/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
appstore/feedback/1.0.2/scripts/uninstall.sh
Normal file
10
appstore/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
appstore/feedback/1.0.2/scripts/upgrade.sh
Normal file
17
appstore/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
appstore/feedback/README.md
Normal file
17
appstore/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
appstore/feedback/data.yml
Normal file
15
appstore/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
appstore/feedback/logo.png
Normal file
BIN
appstore/feedback/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
30
dockge/feedback/.env
Normal file
30
dockge/feedback/.env
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# MySQL 服务 (前置检查) [必填]
|
||||||
|
PANEL_DB_TYPE=mariadb
|
||||||
|
|
||||||
|
# 数据持久化路径 [必填]
|
||||||
|
BAOTA_ROOT_PATH=/home/feedback
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8080
|
||||||
|
|
||||||
|
# 访问地址 [必填]
|
||||||
|
FEEDBACK_WEBSITE=http://127.0.0.18080
|
||||||
|
|
||||||
|
# 备案号 [必填]
|
||||||
|
FEEDBACK_BEI_AN=备案号
|
||||||
|
|
||||||
|
# 数据库 主机地址 [必填]
|
||||||
|
DB_HOSTNAME=127.0.0.1
|
||||||
|
|
||||||
|
# 数据库 端口 [必填]
|
||||||
|
DB_PORT=5432
|
||||||
|
|
||||||
|
# 数据库 名称 [必填]
|
||||||
|
DB_NAME=feedback
|
||||||
|
|
||||||
|
# 数据库 用户名 [必填]
|
||||||
|
MYSQL_USERNAME=feedback
|
||||||
|
|
||||||
|
# 数据库 密码 [必填]
|
||||||
|
MYSQL_PASSWORD=
|
||||||
|
|
21
dockge/feedback/docker-compose.yml
Normal file
21
dockge/feedback/docker-compose.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
feedback:
|
||||||
|
container_name: feedback
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- MYSQL_URL=jdbc:mariadb://${DB_HOSTNAME}:${DB_PORT}/${DB_NAME}?characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai
|
||||||
|
image: q2316367743/feedback:1.0.2
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:8080
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${FEEDBACK_ROOT_PATH}/data:/app/public/data
|
2
dockge/feedback/envs/default.env
Normal file
2
dockge/feedback/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/feedback/envs/global.env
Normal file
2
dockge/feedback/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
Loading…
Reference in New Issue
Block a user