mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2025-02-03 03:17:58 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
parent
e162763959
commit
935584ad10
6
appstore/glance/0.6.4/.env
Normal file
6
appstore/glance/0.6.4/.env
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
APP_NAME_ROOT_PATH=/home/app_name
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8080
|
||||||
|
|
68
appstore/glance/0.6.4/conf/glance.yml
Normal file
68
appstore/glance/0.6.4/conf/glance.yml
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
server:
|
||||||
|
port: 8080
|
||||||
|
assets-path: /app/assets
|
||||||
|
pages:
|
||||||
|
- name: Home
|
||||||
|
columns:
|
||||||
|
- size: small
|
||||||
|
widgets:
|
||||||
|
- type: calendar
|
||||||
|
|
||||||
|
- type: rss
|
||||||
|
limit: 10
|
||||||
|
collapse-after: 3
|
||||||
|
cache: 3h
|
||||||
|
feeds:
|
||||||
|
- url: https://ciechanow.ski/atom.xml
|
||||||
|
- url: https://www.joshwcomeau.com/rss.xml
|
||||||
|
title: Josh Comeau
|
||||||
|
- url: https://samwho.dev/rss.xml
|
||||||
|
- url: https://awesomekling.github.io/feed.xml
|
||||||
|
- url: https://ishadeed.com/feed.xml
|
||||||
|
title: Ahmad Shadeed
|
||||||
|
|
||||||
|
- type: twitch-channels
|
||||||
|
channels:
|
||||||
|
- theprimeagen
|
||||||
|
- cohhcarnage
|
||||||
|
- christitustech
|
||||||
|
- blurbs
|
||||||
|
- asmongold
|
||||||
|
- jembawls
|
||||||
|
|
||||||
|
- size: full
|
||||||
|
widgets:
|
||||||
|
- type: hacker-news
|
||||||
|
|
||||||
|
- type: videos
|
||||||
|
channels:
|
||||||
|
- UCR-DXc1voovS8nhAvccRZhg # Jeff Geerling
|
||||||
|
- UCv6J_jJa8GJqFwQNgNrMuww # ServeTheHome
|
||||||
|
- UCOk-gHyjcWZNj3Br4oxwh0A # Techno Tim
|
||||||
|
|
||||||
|
- type: reddit
|
||||||
|
subreddit: selfhosted
|
||||||
|
|
||||||
|
- size: small
|
||||||
|
widgets:
|
||||||
|
- type: weather
|
||||||
|
location: London, United Kingdom
|
||||||
|
|
||||||
|
- type: markets
|
||||||
|
markets:
|
||||||
|
- symbol: SPY
|
||||||
|
name: S&P 500
|
||||||
|
- symbol: BTC-USD
|
||||||
|
name: Bitcoin
|
||||||
|
- symbol: NVDA
|
||||||
|
name: NVIDIA
|
||||||
|
- symbol: AAPL
|
||||||
|
name: Apple
|
||||||
|
- symbol: MSFT
|
||||||
|
name: Microsoft
|
||||||
|
- symbol: GOOGL
|
||||||
|
name: Google
|
||||||
|
- symbol: AMD
|
||||||
|
name: AMD
|
||||||
|
- symbol: RDDT
|
||||||
|
name: Reddit
|
17
appstore/glance/0.6.4/data.yml
Normal file
17
appstore/glance/0.6.4/data.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "/home/app_name"
|
||||||
|
edit: true
|
||||||
|
envKey: APP_NAME_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
|
24
appstore/glance/0.6.4/docker-compose.yml
Normal file
24
appstore/glance/0.6.4/docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
glance:
|
||||||
|
container_name: glance
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
image: glanceapp/glance:v0.6.4
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:8080
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${APP_NAME_ROOT_PATH}/app/glance.yml:/app/glance.yml
|
||||||
|
- ${APP_NAME_ROOT_PATH}/app/assets:/app/assets
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
22
appstore/glance/0.6.4/scripts/init.sh
Normal file
22
appstore/glance/0.6.4/scripts/init.sh
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#!/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
|
||||||
|
|
||||||
|
mkdir -p "$APP_NAME_ROOT_PATH"
|
||||||
|
mkdir -p "$APP_NAME_ROOT_PATH/app"
|
||||||
|
|
||||||
|
cp ./conf/glance.yml "$APP_NAME_ROOT_PATH/app/glance.yml"
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
24
appstore/glance/0.6.4/scripts/upgrade.sh
Normal file
24
appstore/glance/0.6.4/scripts/upgrade.sh
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#!/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
|
||||||
|
|
||||||
|
mkdir -p "$APP_NAME_ROOT_PATH"
|
||||||
|
mkdir -p "$APP_NAME_ROOT_PATH/app"
|
||||||
|
|
||||||
|
if [ ! -f "$APP_NAME_ROOT_PATH/app/glance.yml" ]; then
|
||||||
|
cp ./conf/glance.yml "$APP_NAME_ROOT_PATH/app/glance.yml"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Check Finish."
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Error: .env file not found."
|
||||||
|
fi
|
30
appstore/glance/README.md
Normal file
30
appstore/glance/README.md
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
# Glance
|
||||||
|
|
||||||
|
一个自托管的仪表板,将所有您的订阅源放在一个地方
|
||||||
|
|
||||||
|
![Glance](https://file.lifebus.top/imgs/glance_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)
|
||||||
|
|
||||||
|
## 小部件
|
||||||
|
|
||||||
|
+ RSS 订阅源
|
||||||
|
+ 子版块帖子
|
||||||
|
+ 天气
|
||||||
|
+ 书签
|
||||||
|
+ 黑客新闻
|
||||||
|
+ Lobsters
|
||||||
|
+ 最新特定频道的 YouTube 视频
|
||||||
|
+ 闹钟
|
||||||
|
+ 日历
|
||||||
|
+ 股票
|
||||||
|
+ iframe
|
||||||
|
+ Twitch 频道和热门游戏
|
||||||
|
+ GitHub 发布
|
||||||
|
+ 代码库概览
|
||||||
|
+ 站点监控
|
||||||
|
+ 搜索框
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
14
appstore/glance/data.yml
Normal file
14
appstore/glance/data.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: glance
|
||||||
|
name: Glance
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Local
|
||||||
|
shortDescZh: 一个自托管的仪表板,将所有您的订阅源放在一个地方
|
||||||
|
shortDescEn: A self-hosted dashboard that puts all your feeds in one place
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://github.com/glanceapp/glance/
|
||||||
|
github: https://github.com/glanceapp/glance/
|
||||||
|
document: https://github.com/glanceapp/glance/
|
BIN
appstore/glance/logo.png
Normal file
BIN
appstore/glance/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.8 KiB |
@ -10,7 +10,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-machine-learning:v1.124.2
|
image: ghcr.io/immich-app/immich-machine-learning:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
@ -52,7 +52,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-server:v1.124.2
|
image: ghcr.io/immich-app/immich-server:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
@ -10,7 +10,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-server:v1.124.2
|
image: ghcr.io/immich-app/immich-server:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
@ -10,7 +10,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-machine-learning:v1.124.2
|
image: ghcr.io/immich-app/immich-machine-learning:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
@ -68,7 +68,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-server:v1.124.2
|
image: ghcr.io/immich-app/immich-server:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
@ -18,7 +18,7 @@ services:
|
|||||||
- TRUST_PROXY_HEADER=true
|
- TRUST_PROXY_HEADER=true
|
||||||
- CASE_SENSITIVE_USERNAME=true
|
- CASE_SENSITIVE_USERNAME=true
|
||||||
- DB_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_NAME}
|
- DB_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_NAME}
|
||||||
image: svhd/logto:1.23.0
|
image: svhd/logto:1.23.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
@ -19,7 +19,7 @@ services:
|
|||||||
- NEXT_PUBLIC_CustomLogo=https://nezha-cf.buycoffee.top/apple-touch-icon.png
|
- NEXT_PUBLIC_CustomLogo=https://nezha-cf.buycoffee.top/apple-touch-icon.png
|
||||||
- NEXT_PUBLIC_CustomTitle=NezhaDash
|
- NEXT_PUBLIC_CustomTitle=NezhaDash
|
||||||
- NEXT_PUBLIC_CustomDescription=NezhaDash is a dashboard for Nezha.
|
- NEXT_PUBLIC_CustomDescription=NezhaDash is a dashboard for Nezha.
|
||||||
image: hamster1963/nezha-dash:v2.3.0
|
image: hamster1963/nezha-dash:v2.4.0
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
2
appstore/nezha-dash/2.4.0/envs/default.env
Normal file
2
appstore/nezha-dash/2.4.0/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/nezha-dash/2.4.0/envs/global.env
Normal file
2
appstore/nezha-dash/2.4.0/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
10
appstore/nezha-dash/2.4.0/scripts/uninstall.sh
Normal file
10
appstore/nezha-dash/2.4.0/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
|
@ -19,10 +19,8 @@ if [ -f .env ]; then
|
|||||||
mkdir -p "$OUTLINE_ROOT_PATH"
|
mkdir -p "$OUTLINE_ROOT_PATH"
|
||||||
mkdir -p "$OUTLINE_ROOT_PATH/data"
|
mkdir -p "$OUTLINE_ROOT_PATH/data"
|
||||||
|
|
||||||
chmod 1001:1001 -R "$OUTLINE_ROOT_PATH"
|
chown -R 1001:1001 "$OUTLINE_ROOT_PATH"
|
||||||
chmod 644 -R "$OUTLINE_ROOT_PATH"
|
chmod -R 1777 "$OUTLINE_ROOT_PATH"
|
||||||
chmod 1001:1001 -R "$OUTLINE_ROOT_PATH/data"
|
|
||||||
chmod 644 -R "$OUTLINE_ROOT_PATH/data"
|
|
||||||
|
|
||||||
echo "Check Finish."
|
echo "Check Finish."
|
||||||
|
|
||||||
|
@ -19,10 +19,8 @@ if [ -f .env ]; then
|
|||||||
mkdir -p "$OUTLINE_ROOT_PATH"
|
mkdir -p "$OUTLINE_ROOT_PATH"
|
||||||
mkdir -p "$OUTLINE_ROOT_PATH/data"
|
mkdir -p "$OUTLINE_ROOT_PATH/data"
|
||||||
|
|
||||||
chmod 1001:1001 -R "$OUTLINE_ROOT_PATH"
|
chown -R 1001:1001 "$OUTLINE_ROOT_PATH"
|
||||||
chmod 644 -R "$OUTLINE_ROOT_PATH"
|
chmod -R 1777 "$OUTLINE_ROOT_PATH"
|
||||||
chmod 1001:1001 -R "$OUTLINE_ROOT_PATH/data"
|
|
||||||
chmod 644 -R "$OUTLINE_ROOT_PATH/data"
|
|
||||||
|
|
||||||
echo "Check Finish."
|
echo "Check Finish."
|
||||||
|
|
||||||
|
6
appstore/tissue/1.5.11/.env
Normal file
6
appstore/tissue/1.5.11/.env
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
TISSUE_ROOT_PATH=/home/tissue
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=9193
|
||||||
|
|
17
appstore/tissue/1.5.11/data.yml
Normal file
17
appstore/tissue/1.5.11/data.yml
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
additionalProperties:
|
||||||
|
formFields:
|
||||||
|
- default: "/home/tissue"
|
||||||
|
edit: true
|
||||||
|
envKey: TISSUE_ROOT_PATH
|
||||||
|
labelZh: 数据持久化路径
|
||||||
|
labelEn: Data persistence path
|
||||||
|
required: true
|
||||||
|
type: text
|
||||||
|
- default: 9193
|
||||||
|
edit: true
|
||||||
|
envKey: PANEL_APP_PORT_HTTP
|
||||||
|
labelZh: WebUI 端口
|
||||||
|
labelEn: WebUI port
|
||||||
|
required: true
|
||||||
|
rule: paramPort
|
||||||
|
type: number
|
24
appstore/tissue/1.5.11/docker-compose.yml
Normal file
24
appstore/tissue/1.5.11/docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
tissue:
|
||||||
|
container_name: tissue
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
image: chris2s/tissue:1.5.11
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:9193
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${TISSUE_ROOT_PATH}/config:/app/config
|
||||||
|
- ${TISSUE_ROOT_PATH}/video:/data/video
|
||||||
|
- ${TISSUE_ROOT_PATH}/file:/data/file
|
||||||
|
- ${TISSUE_ROOT_PATH}/downloads:/downloads
|
2
appstore/tissue/1.5.11/envs/default.env
Normal file
2
appstore/tissue/1.5.11/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
appstore/tissue/1.5.11/envs/global.env
Normal file
2
appstore/tissue/1.5.11/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
17
appstore/tissue/1.5.11/scripts/init.sh
Normal file
17
appstore/tissue/1.5.11/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/tissue/1.5.11/scripts/uninstall.sh
Normal file
10
appstore/tissue/1.5.11/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/tissue/1.5.11/scripts/upgrade.sh
Normal file
17
appstore/tissue/1.5.11/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
|
25
appstore/tissue/README.md
Normal file
25
appstore/tissue/README.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Tissue
|
||||||
|
|
||||||
|
简短的介绍
|
||||||
|
|
||||||
|
![Tissue](https://file.lifebus.top/imgs/tissue_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)
|
||||||
|
|
||||||
|
## 使用说明
|
||||||
|
|
||||||
|
+ 科学的上网方式是使用本项目的前提,这是最重要的一点。
|
||||||
|
+ 项目仍处于非常早期阶段,只是满足了最基本的需求。
|
||||||
|
+ 目前仍有许多bug,不排除有丢失或污染数据的可能性,请做好备份,酌情使用。
|
||||||
|
+ 对于非Tissue刮削的NFO文件打开可能存在报错,有处理了部分情况,可能还有遗漏的情况。
|
||||||
|
+ 当前还是自用为主,请勿在国内任何平台讨论本项目。
|
||||||
|
|
||||||
|
## 安装说明
|
||||||
|
|
||||||
|
> 默认用户名:`admin`
|
||||||
|
>
|
||||||
|
> 默认密码:`password`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
![Ms Studio](https://file.lifebus.top/imgs/ms_blank_001.png)
|
14
appstore/tissue/data.yml
Normal file
14
appstore/tissue/data.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
additionalProperties:
|
||||||
|
key: tissue
|
||||||
|
name: Tissue
|
||||||
|
tags:
|
||||||
|
- WebSite
|
||||||
|
- Local
|
||||||
|
shortDescZh: 老师教材刮削工具,提供海报下载、元数据匹配等功能
|
||||||
|
shortDescEn: A scraping tool for teachers' teaching materials, providing functions such as poster download and metadata matching
|
||||||
|
type: website
|
||||||
|
crossVersionUpdate: true
|
||||||
|
limit: 0
|
||||||
|
website: https://github.com/chris-2s/tissue/
|
||||||
|
github: https://github.com/chris-2s/tissue/
|
||||||
|
document: https://github.com/chris-2s/tissue/
|
BIN
appstore/tissue/logo.png
Normal file
BIN
appstore/tissue/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
6
dockge/glance/.env
Normal file
6
dockge/glance/.env
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
APP_NAME_ROOT_PATH=/home/app_name
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=8080
|
||||||
|
|
68
dockge/glance/conf/glance.yml
Normal file
68
dockge/glance/conf/glance.yml
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
server:
|
||||||
|
port: 8080
|
||||||
|
assets-path: /app/assets
|
||||||
|
pages:
|
||||||
|
- name: Home
|
||||||
|
columns:
|
||||||
|
- size: small
|
||||||
|
widgets:
|
||||||
|
- type: calendar
|
||||||
|
|
||||||
|
- type: rss
|
||||||
|
limit: 10
|
||||||
|
collapse-after: 3
|
||||||
|
cache: 3h
|
||||||
|
feeds:
|
||||||
|
- url: https://ciechanow.ski/atom.xml
|
||||||
|
- url: https://www.joshwcomeau.com/rss.xml
|
||||||
|
title: Josh Comeau
|
||||||
|
- url: https://samwho.dev/rss.xml
|
||||||
|
- url: https://awesomekling.github.io/feed.xml
|
||||||
|
- url: https://ishadeed.com/feed.xml
|
||||||
|
title: Ahmad Shadeed
|
||||||
|
|
||||||
|
- type: twitch-channels
|
||||||
|
channels:
|
||||||
|
- theprimeagen
|
||||||
|
- cohhcarnage
|
||||||
|
- christitustech
|
||||||
|
- blurbs
|
||||||
|
- asmongold
|
||||||
|
- jembawls
|
||||||
|
|
||||||
|
- size: full
|
||||||
|
widgets:
|
||||||
|
- type: hacker-news
|
||||||
|
|
||||||
|
- type: videos
|
||||||
|
channels:
|
||||||
|
- UCR-DXc1voovS8nhAvccRZhg # Jeff Geerling
|
||||||
|
- UCv6J_jJa8GJqFwQNgNrMuww # ServeTheHome
|
||||||
|
- UCOk-gHyjcWZNj3Br4oxwh0A # Techno Tim
|
||||||
|
|
||||||
|
- type: reddit
|
||||||
|
subreddit: selfhosted
|
||||||
|
|
||||||
|
- size: small
|
||||||
|
widgets:
|
||||||
|
- type: weather
|
||||||
|
location: London, United Kingdom
|
||||||
|
|
||||||
|
- type: markets
|
||||||
|
markets:
|
||||||
|
- symbol: SPY
|
||||||
|
name: S&P 500
|
||||||
|
- symbol: BTC-USD
|
||||||
|
name: Bitcoin
|
||||||
|
- symbol: NVDA
|
||||||
|
name: NVIDIA
|
||||||
|
- symbol: AAPL
|
||||||
|
name: Apple
|
||||||
|
- symbol: MSFT
|
||||||
|
name: Microsoft
|
||||||
|
- symbol: GOOGL
|
||||||
|
name: Google
|
||||||
|
- symbol: AMD
|
||||||
|
name: AMD
|
||||||
|
- symbol: RDDT
|
||||||
|
name: Reddit
|
24
dockge/glance/docker-compose.yml
Normal file
24
dockge/glance/docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
glance:
|
||||||
|
container_name: glance
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
image: glanceapp/glance:v0.6.4
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:8080
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${APP_NAME_ROOT_PATH}/app/glance.yml:/app/glance.yml
|
||||||
|
- ${APP_NAME_ROOT_PATH}/app/assets:/app/assets
|
||||||
|
- /etc/timezone:/etc/timezone:ro
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
2
dockge/glance/envs/default.env
Normal file
2
dockge/glance/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/glance/envs/global.env
Normal file
2
dockge/glance/envs/global.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
TZ=Asia/Shanghai
|
@ -10,7 +10,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-machine-learning:v1.124.2
|
image: ghcr.io/immich-app/immich-machine-learning:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
|
@ -52,7 +52,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-server:v1.124.2
|
image: ghcr.io/immich-app/immich-server:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
|
@ -10,7 +10,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-server:v1.124.2
|
image: ghcr.io/immich-app/immich-server:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
|
@ -10,7 +10,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-machine-learning:v1.124.2
|
image: ghcr.io/immich-app/immich-machine-learning:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
@ -68,7 +68,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- ./envs/global.env
|
- ./envs/global.env
|
||||||
- .env
|
- .env
|
||||||
image: ghcr.io/immich-app/immich-server:v1.124.2
|
image: ghcr.io/immich-app/immich-server:v1.125.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
|
@ -18,7 +18,7 @@ services:
|
|||||||
- TRUST_PROXY_HEADER=true
|
- TRUST_PROXY_HEADER=true
|
||||||
- CASE_SENSITIVE_USERNAME=true
|
- CASE_SENSITIVE_USERNAME=true
|
||||||
- DB_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_NAME}
|
- DB_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_NAME}
|
||||||
image: svhd/logto:1.23.0
|
image: svhd/logto:1.23.1
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
|
@ -19,7 +19,7 @@ services:
|
|||||||
- NEXT_PUBLIC_CustomLogo=https://nezha-cf.buycoffee.top/apple-touch-icon.png
|
- NEXT_PUBLIC_CustomLogo=https://nezha-cf.buycoffee.top/apple-touch-icon.png
|
||||||
- NEXT_PUBLIC_CustomTitle=NezhaDash
|
- NEXT_PUBLIC_CustomTitle=NezhaDash
|
||||||
- NEXT_PUBLIC_CustomDescription=NezhaDash is a dashboard for Nezha.
|
- NEXT_PUBLIC_CustomDescription=NezhaDash is a dashboard for Nezha.
|
||||||
image: hamster1963/nezha-dash:v2.3.0
|
image: hamster1963/nezha-dash:v2.4.0
|
||||||
labels:
|
labels:
|
||||||
createdBy: Apps
|
createdBy: Apps
|
||||||
networks:
|
networks:
|
||||||
|
6
dockge/tissue/.env
Normal file
6
dockge/tissue/.env
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# 数据持久化路径 [必填]
|
||||||
|
TISSUE_ROOT_PATH=/home/tissue
|
||||||
|
|
||||||
|
# WebUI 端口 [必填]
|
||||||
|
PANEL_APP_PORT_HTTP=9193
|
||||||
|
|
24
dockge/tissue/docker-compose.yml
Normal file
24
dockge/tissue/docker-compose.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
networks:
|
||||||
|
1panel-network:
|
||||||
|
external: true
|
||||||
|
services:
|
||||||
|
tissue:
|
||||||
|
container_name: tissue
|
||||||
|
env_file:
|
||||||
|
- ./envs/global.env
|
||||||
|
- .env
|
||||||
|
environment:
|
||||||
|
- TZ=Asia/Shanghai
|
||||||
|
image: chris2s/tissue:1.5.11
|
||||||
|
labels:
|
||||||
|
createdBy: Apps
|
||||||
|
networks:
|
||||||
|
- 1panel-network
|
||||||
|
ports:
|
||||||
|
- ${PANEL_APP_PORT_HTTP}:9193
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${TISSUE_ROOT_PATH}/config:/app/config
|
||||||
|
- ${TISSUE_ROOT_PATH}/video:/data/video
|
||||||
|
- ${TISSUE_ROOT_PATH}/file:/data/file
|
||||||
|
- ${TISSUE_ROOT_PATH}/downloads:/downloads
|
2
dockge/tissue/envs/default.env
Normal file
2
dockge/tissue/envs/default.env
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# copyright© 2024 XinJiang Ms Studio
|
||||||
|
ENV_FILE=.env
|
2
dockge/tissue/envs/global.env
Normal file
2
dockge/tissue/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