diff --git a/apps/stash-box/README.md b/apps/stash-box/README.md new file mode 100644 index 000000000..a5a5f0ad2 --- /dev/null +++ b/apps/stash-box/README.md @@ -0,0 +1,35 @@ +# Stash Box + +视频索引和感知哈希元数据API + +![Stash](https://file.lifebus.top/imgs/stasho_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) + +## 简介 + +Stash 是一个用 Go 语言编写的网页应用程序,用于为您存储和组织色情收藏。它是自托管的,并遵循 AGPL-3.0 许可协议发布。 + ++ Stash 从互联网收集您收藏中的视频信息,并通过使用社区构建的插件扩展,支持大量内容制作者和网站。 + ++ Stash 支持多种视频和图像格式。 + ++ 您可以标记视频,稍后找到它们。 + ++ Stash 提供关于表演者、标签、工作室等统计信息。 + +## 安装说明 + +### 网络代理 + +请前往持久化目录下, 修改 `config/config.yml` 配置文件。 + +增加配置: + +```yml +proxy: http://127.0.0.1:7890 +``` + +--- + +![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png) diff --git a/apps/stash-box/data.yml b/apps/stash-box/data.yml new file mode 100644 index 000000000..7e51972b3 --- /dev/null +++ b/apps/stash-box/data.yml @@ -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/ diff --git a/apps/stash-box/development/data.yml b/apps/stash-box/development/data.yml new file mode 100644 index 000000000..f699dae0c --- /dev/null +++ b/apps/stash-box/development/data.yml @@ -0,0 +1,68 @@ +additionalProperties: + formFields: + - default: "/home/stash" + edit: true + envKey: STASH_ROOT_PATH + labelZh: 数据持久化路径 + labelEn: Data persistence path + required: true + type: text + - default: "host" + edit: true + envKey: NETWORK_MODE + labelEn: Drive path + labelZh: 网络模式 + required: true + type: select + values: + - label: 主机网络模式 + value: "host" + - label: 桥接网络模式 + value: "bridge" + - label: 无网络模式 + value: "none" + - label: 1panel-network + value: "1panel-network" + - default: 9999 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelZh: WebUI 端口 + labelEn: WebUI port + required: true + rule: paramPort + type: number + - default: "" + edit: true + envKey: CUSTOM_MOUNT_DIRECTORY_1 + labelEn: Custom mount directory 1 + labelZh: 自定义挂载目录 1 + required: false + type: text + - default: "" + edit: true + envKey: CUSTOM_MOUNT_DIRECTORY_2 + labelEn: Custom mount directory 2 + labelZh: 自定义挂载目录 2 + required: false + type: text + - default: "" + edit: true + envKey: CUSTOM_MOUNT_DIRECTORY_3 + labelEn: Custom mount directory 3 + labelZh: 自定义挂载目录 3 + required: false + type: text + - 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 diff --git a/apps/stash-box/development/docker-compose.yml b/apps/stash-box/development/docker-compose.yml new file mode 100644 index 000000000..d7b3b6691 --- /dev/null +++ b/apps/stash-box/development/docker-compose.yml @@ -0,0 +1,28 @@ +networks: + 1panel-network: + external: true + +services: + stash-box: + image: stashapp/stash-box:development + container_name: ${CONTAINER_NAME} + labels: + - createdBy=Apps + - traefik.http.routers.stash-box.rule=Host(``) + - traefik.http.routers.stash-box.tls=true + - traefik.http.routers.stash-box.tls.certresolver=stash-box + - traefik.port=9998 + restart: always + network_mode: ${NETWORK_MODE:-host} + ports: + - ${PANEL_APP_PORT_HTTP}:${PANEL_APP_PORT_HTTP} + env_file: + - ${GLOBAL_ENV_FILE:-/etc/1panel/envs/global.env} + - ${ENV_FILE:-/etc/1panel/envs/default.env} + logging: + driver: "json-file" + options: + max-file: "10" + max-size: "2m" + volumes: + - ${STASH_ROOT_PATH}/data:/root/.stash-box diff --git a/apps/stash-box/development/envs/default.env b/apps/stash-box/development/envs/default.env new file mode 100644 index 000000000..cd05f46e6 --- /dev/null +++ b/apps/stash-box/development/envs/default.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +ENV_FILE=.env diff --git a/apps/stash-box/development/envs/global.env b/apps/stash-box/development/envs/global.env new file mode 100644 index 000000000..e10989fe4 --- /dev/null +++ b/apps/stash-box/development/envs/global.env @@ -0,0 +1,2 @@ +# copyright© 2024 XinJiang Ms Studio +TZ=Asia/Shanghai diff --git a/apps/stash-box/development/scripts/init.sh b/apps/stash-box/development/scripts/init.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/apps/stash-box/development/scripts/init.sh @@ -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 diff --git a/apps/stash-box/development/scripts/uninstall.sh b/apps/stash-box/development/scripts/uninstall.sh new file mode 100644 index 000000000..c86c4fbca --- /dev/null +++ b/apps/stash-box/development/scripts/uninstall.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ -f .env ]; then + source .env + + echo "Check Finish." + +else + echo "Error: .env file not found." +fi diff --git a/apps/stash-box/development/scripts/upgrade.sh b/apps/stash-box/development/scripts/upgrade.sh new file mode 100644 index 000000000..07fb8c3fe --- /dev/null +++ b/apps/stash-box/development/scripts/upgrade.sh @@ -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 diff --git a/apps/stash-box/logo.png b/apps/stash-box/logo.png new file mode 100644 index 000000000..ea145b181 Binary files /dev/null and b/apps/stash-box/logo.png differ