Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-01-24 06:26:14 +00:00
parent e162763959
commit 935584ad10
88 changed files with 507 additions and 22 deletions
+6
View File
@@ -0,0 +1,6 @@
# 数据持久化路径 [必填]
APP_NAME_ROOT_PATH=/home/app_name
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8080
+68
View 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
View 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
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
ENV_FILE=.env
+2
View File
@@ -0,0 +1,2 @@
# copyright© 2024 XinJiang Ms Studio
TZ=Asia/Shanghai