Processed apps directory via GitHub Actions

This commit is contained in:
QYG2297248353
2025-12-15 21:23:17 +00:00
parent 3a04b6e8bd
commit 15b38e0adc
31 changed files with 7 additions and 7 deletions
+21
View File
@@ -0,0 +1,21 @@
# 数据持久化路径 [必填]
GLEAN_ROOT_PATH=/home/glean
# WebUI 端口 [必填]
PANEL_APP_PORT_HTTP=8080
# WebUI 后台端口 [必填]
PANEL_APP_PORT_ADMIN=3001
# 管理员用户名 [必填]
ADMIN_USERNAME=admin
# 管理员密码 [必填]
ADMIN_PASSWORD=
# 签名密钥 [必填]
SECRET_KEY=
# 数据库密码 [必填]
POSTGRES_PASSWORD=glean
+53
View File
@@ -0,0 +1,53 @@
additionalProperties:
formFields:
- default: "/home/glean"
edit: true
envKey: GLEAN_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
- default: 3001
edit: true
envKey: PANEL_APP_PORT_ADMIN
labelZh: WebUI 后台端口
labelEn: WebUI Admin Port
required: true
rule: paramPort
type: number
- default: "admin"
edit: true
envKey: ADMIN_USERNAME
labelZh: 管理员用户名
labelEn: Admin username
required: true
type: text
- default: ""
edit: true
envKey: ADMIN_PASSWORD
labelZh: 管理员密码
labelEn: Admin password
required: true
type: password
- default: ""
edit: true
envKey: SECRET_KEY
labelZh: 签名密钥
labelEn: Signature key
required: true
type: password
- default: "glean"
edit: true
envKey: POSTGRES_PASSWORD
labelZh: 数据库密码
labelEn: Postgres password
required: true
type: password
+147
View File
@@ -0,0 +1,147 @@
networks:
1panel-network:
external: true
glean-network:
driver: bridge
services:
admin:
container_name: glean-admin
depends_on:
- backend
env_file:
- ./envs/global.env
- .env
image: ghcr.io/leslieleung/glean-admin:0.2.0
networks:
- glean-network
ports:
- ${PANEL_APP_PORT_ADMIN:-3001}:80
restart: always
backend:
command:
- uv
- run
- --no-sync
- uvicorn
- glean_api.main:app
- --host
- 0.0.0.0
- --port
- '8000'
container_name: glean
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
env_file:
- ./envs/global.env
- .env
environment:
ADMIN_PASSWORD: ${ADMIN_PASSWORD:-}
ADMIN_ROLE: ${ADMIN_ROLE:-super_admin}
ADMIN_USERNAME: ${ADMIN_USERNAME:-admin}
CORS_ORIGINS: '["http://localhost", "http://localhost:3000", "http://localhost:3001"]'
CREATE_ADMIN: ${CREATE_ADMIN:-true}
DATABASE_URL: postgresql+asyncpg://${POSTGRES_USER:-glean}:${POSTGRES_PASSWORD:-glean}@postgres:5432/${POSTGRES_DB:-glean}
DEBUG: ${DEBUG:-false}
REDIS_URL: redis://redis:6379/0
RUN_MIGRATIONS: 'true'
SECRET_KEY: ${SECRET_KEY:-change-me-in-production-use-a-long-random-string}
healthcheck:
interval: 10s
retries: 5
start_period: 30s
test:
- CMD
- curl
- -f
- http://localhost:8000/api/health
timeout: 5s
image: ghcr.io/leslieleung/glean-backend:0.1.4
labels:
createdBy: Apps
networks:
- glean-network
restart: always
postgres:
container_name: glean-postgres
env_file:
- ./envs/global.env
- .env
environment:
POSTGRES_DB: ${POSTGRES_DB:-glean}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-glean}
POSTGRES_USER: ${POSTGRES_USER:-glean}
healthcheck:
interval: 10s
retries: 5
test:
- CMD-SHELL
- pg_isready -U ${POSTGRES_USER:-glean}
timeout: 5s
image: postgres:16-alpine
networks:
- glean-network
restart: always
volumes:
- ${GLEAN_ROOT_PATH}/postgres:/var/lib/postgresql/data
redis:
command: redis-server --appendonly yes
container_name: glean-redis
env_file:
- ./envs/global.env
- .env
healthcheck:
interval: 10s
retries: 5
test:
- CMD
- redis-cli
- ping
timeout: 5s
image: redis:7-alpine
networks:
- glean-network
restart: always
volumes:
- ${GLEAN_ROOT_PATH}/redis:/data
web:
container_name: glean-web
depends_on:
- backend
env_file:
- ./envs/global.env
- .env
image: ghcr.io/leslieleung/glean-web:0.1.4
networks:
- glean-network
ports:
- ${PANEL_APP_PORT_HTTP:-80}:80
restart: always
worker:
command:
- uv
- run
- --no-sync
- arq
- glean_worker.main.WorkerSettings
container_name: glean-worker
depends_on:
backend:
condition: service_healthy
postgres:
condition: service_healthy
redis:
condition: service_healthy
env_file:
- ./envs/global.env
- .env
environment:
DATABASE_URL: postgresql+asyncpg://${POSTGRES_USER:-glean}:${POSTGRES_PASSWORD:-glean}@postgres:5432/${POSTGRES_DB:-glean}
REDIS_URL: redis://redis:6379/0
SECRET_KEY: ${SECRET_KEY:-}
image: ghcr.io/leslieleung/glean-backend:0.1.4
networks:
- glean-network
restart: always
+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
+17
View 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
View 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
View 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