mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-04-06 02:08:08 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
parent
2b8df45755
commit
106de8de00
41
appstore/stash-box/README.md
Normal file
41
appstore/stash-box/README.md
Normal file
@ -0,0 +1,41 @@
|
||||
# Stash Box
|
||||
|
||||
视频索引和感知哈希元数据API
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
## 简介
|
||||
|
||||
Stash 是一个用 Go 语言编写的网页应用程序,用于为您存储和组织色情收藏。它是自托管的,并遵循 AGPL-3.0 许可协议发布。
|
||||
|
||||
+ Stash 从互联网收集您收藏中的视频信息,并通过使用社区构建的插件扩展,支持大量内容制作者和网站。
|
||||
|
||||
+ Stash 支持多种视频和图像格式。
|
||||
|
||||
+ 您可以标记视频,稍后找到它们。
|
||||
|
||||
+ Stash 提供关于表演者、标签、工作室等统计信息。
|
||||
|
||||
## 安装说明
|
||||
|
||||
> 默认用户名与密码,请通过日志查看
|
||||
|
||||
### 配置数据库
|
||||
|
||||
Stash 使用 PostgreSQL 作为数据库。您可以在安装后前往持久化目录下的 `data/stash-box-config.yml` 修改配置
|
||||
|
||||
基本格式:`username:password@host:port/database?sslmode=disable`
|
||||
|
||||
示例:`postgres:postgres@127.0.0.1:5432/stash?sslmode=disable`
|
||||
|
||||
```yml
|
||||
database: "填写数据库配置"
|
||||
jwt_secret_key: "系统生成"
|
||||
session_store_key: "系统生成"
|
||||
```
|
||||
|
||||
---
|
||||
|
||||

|
14
appstore/stash-box/data.yml
Normal file
14
appstore/stash-box/data.yml
Normal file
@ -0,0 +1,14 @@
|
||||
additionalProperties:
|
||||
key: stash-box
|
||||
name: Stash Box
|
||||
tags:
|
||||
- WebSite
|
||||
- Local
|
||||
shortDescZh: 视频索引和感知哈希元数据API
|
||||
shortDescEn: Video indexing and perceptual hash metadata API
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://stashapp.cc/
|
||||
github: https://github.com/stashapp/stash/
|
||||
document: https://docs.stashapp.cc/
|
12
appstore/stash-box/development/.env
Normal file
12
appstore/stash-box/development/.env
Normal file
@ -0,0 +1,12 @@
|
||||
# 数据持久化路径 [必填]
|
||||
STASH_BOX_ROOT_PATH=/home/stash-box
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=9999
|
||||
|
||||
# 网络代理地址
|
||||
HTTP_PROXY=
|
||||
|
||||
# 跳过代理地址
|
||||
NO_PROXY=localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local
|
||||
|
31
appstore/stash-box/development/data.yml
Normal file
31
appstore/stash-box/development/data.yml
Normal file
@ -0,0 +1,31 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- default: "/home/stash-box"
|
||||
edit: true
|
||||
envKey: STASH_BOX_ROOT_PATH
|
||||
labelZh: 数据持久化路径
|
||||
labelEn: Data persistence path
|
||||
required: true
|
||||
type: text
|
||||
- default: 9999
|
||||
edit: true
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: HTTP_PROXY
|
||||
labelZh: 网络代理地址
|
||||
labelEn: Network proxy address
|
||||
required: false
|
||||
type: text
|
||||
- default: "localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local"
|
||||
edit: true
|
||||
envKey: NO_PROXY
|
||||
labelZh: 跳过代理地址
|
||||
labelEn: Skip proxy address
|
||||
required: false
|
||||
type: text
|
32
appstore/stash-box/development/docker-compose.yml
Normal file
32
appstore/stash-box/development/docker-compose.yml
Normal file
@ -0,0 +1,32 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
stash-box:
|
||||
container_name: stash-box
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- HTTPS_PROXY=${HTTP_PROXY}
|
||||
- HTTP_PROXY=${HTTP_PROXY:-}
|
||||
- NO_PROXY=${NO_PROXY:-}
|
||||
image: stashapp/stash-box:development
|
||||
labels:
|
||||
- createdBy=Apps
|
||||
- traefik.http.routers.stash-box.rule=Host(`<DOMAIN>`)
|
||||
- traefik.http.routers.stash-box.tls=true
|
||||
- traefik.http.routers.stash-box.tls.certresolver=stash-box
|
||||
- traefik.port=9998
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-file: '10'
|
||||
max-size: 2m
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||
restart: always
|
||||
volumes:
|
||||
- ${STASH_BOX_ROOT_PATH}/data:/root/.stash-box
|
2
appstore/stash-box/development/envs/default.env
Normal file
2
appstore/stash-box/development/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
appstore/stash-box/development/envs/global.env
Normal file
2
appstore/stash-box/development/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
17
appstore/stash-box/development/scripts/init.sh
Normal file
17
appstore/stash-box/development/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/stash-box/development/scripts/uninstall.sh
Normal file
10
appstore/stash-box/development/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/stash-box/development/scripts/upgrade.sh
Normal file
17
appstore/stash-box/development/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
|
BIN
appstore/stash-box/logo.png
Normal file
BIN
appstore/stash-box/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
@ -20,6 +20,8 @@ Stash 是一个用 Go 语言编写的网页应用程序,用于为您存储和
|
||||
|
||||
## 安装说明
|
||||
|
||||
> 默认用户名与密码,请通过日志查看
|
||||
|
||||
### 网络代理
|
||||
|
||||
请前往持久化目录下, 修改 `config/config.yml` 配置文件。
|
||||
|
12
dockge/stash-box/.env
Normal file
12
dockge/stash-box/.env
Normal file
@ -0,0 +1,12 @@
|
||||
# 数据持久化路径 [必填]
|
||||
STASH_BOX_ROOT_PATH=/home/stash-box
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=9999
|
||||
|
||||
# 网络代理地址
|
||||
HTTP_PROXY=
|
||||
|
||||
# 跳过代理地址
|
||||
NO_PROXY=localhost,127.0.0.1,::1,192.168.0.0/16,10.0.0.0/8,*.local
|
||||
|
32
dockge/stash-box/docker-compose.yml
Normal file
32
dockge/stash-box/docker-compose.yml
Normal file
@ -0,0 +1,32 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
stash-box:
|
||||
container_name: stash-box
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- HTTPS_PROXY=${HTTP_PROXY}
|
||||
- HTTP_PROXY=${HTTP_PROXY:-}
|
||||
- NO_PROXY=${NO_PROXY:-}
|
||||
image: stashapp/stash-box:development
|
||||
labels:
|
||||
- createdBy=Apps
|
||||
- traefik.http.routers.stash-box.rule=Host(`<DOMAIN>`)
|
||||
- traefik.http.routers.stash-box.tls=true
|
||||
- traefik.http.routers.stash-box.tls.certresolver=stash-box
|
||||
- traefik.port=9998
|
||||
logging:
|
||||
driver: json-file
|
||||
options:
|
||||
max-file: '10'
|
||||
max-size: 2m
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP}
|
||||
restart: always
|
||||
volumes:
|
||||
- ${STASH_BOX_ROOT_PATH}/data:/root/.stash-box
|
2
dockge/stash-box/envs/default.env
Normal file
2
dockge/stash-box/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
ENV_FILE=.env
|
2
dockge/stash-box/envs/global.env
Normal file
2
dockge/stash-box/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
||||
# copyright© 2024 XinJiang Ms Studio
|
||||
TZ=Asia/Shanghai
|
Loading…
x
Reference in New Issue
Block a user