mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
Delete appstore directory
This commit is contained in:
@@ -1,27 +0,0 @@
|
||||
# 数据持久化路径 [必填]
|
||||
WISEFLOW_ROOT_PATH=/home/wiseflow
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=8090
|
||||
|
||||
# 后端服务端口 [必填]
|
||||
PANEL_APP_PORT_BACKEND=8077
|
||||
|
||||
# LLM API 地址 [必填]
|
||||
LLM_API_BASE=https://api.siliconflow.cn/v1
|
||||
|
||||
# LLM API 密钥
|
||||
LLM_API_KEY=
|
||||
|
||||
# PB数据库 账户密码
|
||||
PB_API_AUTH=test@example.com|1234567890
|
||||
|
||||
# 信息提炼与标签匹配任务模型 [必填]
|
||||
GET_INFO_MODEL=zhipuai/glm4-9B-chat
|
||||
|
||||
# 近似信息合并改写任务模型 [必填]
|
||||
REWRITE_MODEL=alibaba/Qwen2-7B-Instruct
|
||||
|
||||
# 网页解析模型 [必填]
|
||||
HTML_PARSE_MODEL=alibaba/Qwen2-7B-Instruct
|
||||
|
||||
@@ -1,68 +0,0 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/wiseflow"
|
||||
edit: true
|
||||
envKey: WISEFLOW_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 8090
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 8077
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_BACKEND
|
||||
labelZh: 后端服务端口
|
||||
labelEn: Backend service port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "https://api.siliconflow.cn/v1"
|
||||
edit: true
|
||||
envKey: LLM_API_BASE
|
||||
labelZh: LLM API 地址
|
||||
labelEn: LLM API address
|
||||
required: true
|
||||
rule: paramExtUrl
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: LLM_API_KEY
|
||||
labelZh: LLM API 密钥
|
||||
labelEn: LLM API key
|
||||
required: false
|
||||
type: text
|
||||
- default: "test@example.com|1234567890"
|
||||
edit: true
|
||||
envKey: PB_API_AUTH
|
||||
labelZh: PB数据库 账户密码
|
||||
labelEn: PB database account password
|
||||
required: false
|
||||
type: text
|
||||
- default: "zhipuai/glm4-9B-chat"
|
||||
edit: true
|
||||
envKey: GET_INFO_MODEL
|
||||
labelZh: 信息提炼与标签匹配任务模型
|
||||
labelEn: Information extraction and label matching task model
|
||||
required: true
|
||||
type: text
|
||||
- default: "alibaba/Qwen2-7B-Instruct"
|
||||
edit: true
|
||||
envKey: REWRITE_MODEL
|
||||
labelZh: 近似信息合并改写任务模型
|
||||
labelEn: Approximate information merge rewrite task model
|
||||
required: true
|
||||
type: text
|
||||
- default: "alibaba/Qwen2-7B-Instruct"
|
||||
edit: true
|
||||
envKey: HTML_PARSE_MODEL
|
||||
labelZh: 网页解析模型
|
||||
labelEn: Web page parsing model
|
||||
required: true
|
||||
type: text
|
||||
@@ -1,28 +0,0 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
wiseflow:
|
||||
container_name: wiseflow
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- TZ=Asia/Shanghai
|
||||
- LANG=zh_CN.UTF-8
|
||||
- LC_ALL=zh_CN.UTF-8
|
||||
- WS_LOG=verbose
|
||||
image: qyg2297248353/wiseflow:v0.3.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:8090
|
||||
- ${PANEL_APP_PORT_BACKEND}:8077
|
||||
restart: always
|
||||
stdin_open: true
|
||||
tty: true
|
||||
volumes:
|
||||
- ${WISEFLOW_ROOT_PATH}/pb_data:/app/pb/pb_data
|
||||
- ${WISEFLOW_ROOT_PATH}/data:/app/works_data
|
||||
@@ -1,2 +0,0 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
||||
@@ -1,2 +0,0 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
||||
@@ -1,17 +0,0 @@
|
||||
#!/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
|
||||
@@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [ -f .env ]; then
|
||||
source .env
|
||||
|
||||
echo "Check Finish."
|
||||
|
||||
else
|
||||
echo "Error: .env file not found."
|
||||
fi
|
||||
@@ -1,17 +0,0 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user