chore: Remove explicit version numbers from UI and comments, and apply minor formatting to Docker Compose configurations.
This commit is contained in:
parent
4d3761e0e0
commit
0176cb4d12
|
|
@ -1,5 +1,5 @@
|
|||
# =============================================
|
||||
# DeepAudit v3.0.2 生产环境一键部署配置
|
||||
# DeepAudit 生产环境一键部署配置
|
||||
# =============================================
|
||||
# 使用预构建的 GHCR 镜像,无需本地构建
|
||||
# 部署命令: curl -fsSL https://raw.githubusercontent.com/lintsinghua/DeepAudit/main/docker-compose.prod.yml | docker compose -f - up -d
|
||||
|
|
@ -15,7 +15,7 @@ services:
|
|||
- POSTGRES_PASSWORD=postgres
|
||||
- POSTGRES_DB=deepaudit
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
||||
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
|
@ -28,7 +28,7 @@ services:
|
|||
volumes:
|
||||
- redis_data:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
test: [ "CMD", "redis-cli", "ping" ]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
|
@ -79,7 +79,7 @@ services:
|
|||
restart: "no"
|
||||
environment:
|
||||
- DATABASE_URL=postgresql+asyncpg://postgres:postgres@db:5432/deepaudit
|
||||
command: [".venv/bin/alembic", "upgrade", "head"]
|
||||
command: [ ".venv/bin/alembic", "upgrade", "head" ]
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# =============================================
|
||||
# DeepAudit v3.0.2 Docker Compose 配置
|
||||
# DeepAudit Docker Compose 配置
|
||||
# =============================================
|
||||
# 部署: docker compose up -d
|
||||
# 查看日志: docker compose logs -f
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
}
|
||||
|
||||
/*
|
||||
DeepAudit Design System v3.1
|
||||
DeepAudit Design System
|
||||
Theme System with CSS Variables
|
||||
- Light Mode: Clean, professional
|
||||
- Dark Mode: Cyberpunk Terminal
|
||||
|
|
|
|||
|
|
@ -133,7 +133,7 @@ export default function Login() {
|
|||
</div>
|
||||
|
||||
<div className="absolute bottom-4 left-4 text-sm font-mono text-muted-foreground z-30">
|
||||
DEEPAUDIT_AUTH_v3
|
||||
DEEPAUDIT_AUTH
|
||||
</div>
|
||||
|
||||
<div className="absolute bottom-4 right-4 text-sm font-mono text-muted-foreground z-30">
|
||||
|
|
@ -262,7 +262,7 @@ export default function Login() {
|
|||
{/* Version Info */}
|
||||
<div className="mt-6 text-center">
|
||||
<p className="font-mono text-sm text-muted-foreground uppercase">
|
||||
Version {version} · Secure Connection
|
||||
Secure Connection
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ export default function Register() {
|
|||
</div>
|
||||
|
||||
<div className="absolute bottom-4 left-4 text-xs font-mono text-muted-foreground z-30">
|
||||
DEEPAUDIT_REG_v3
|
||||
DEEPAUDIT_REG
|
||||
</div>
|
||||
|
||||
<div className="absolute bottom-4 right-4 text-xs font-mono text-muted-foreground z-30">
|
||||
|
|
@ -232,7 +232,7 @@ export default function Register() {
|
|||
{/* Version Info */}
|
||||
<div className="mt-6 text-center">
|
||||
<p className="font-mono text-xs text-muted-foreground uppercase">
|
||||
Version {version} · Secure Registration
|
||||
Secure Registration
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue