Some checks failed
CD Pipeline / deploy (push) Failing after 59s
- 建立 Gitea Actions CD pipeline (.gitea/workflows/cd.yaml) - 部署模式: rsync Python 檔案至 188 → docker restart (volume mount) - Dockerfile/requirements 變動時自動重建 Docker image - 部署通知: Telegram (開始/成功/失敗) - 健康檢查: https://mo.wooo.work/health (最多 5 次重試) - 同步最新 CLAUDE.md / ADR-008 / memory (2026-04-19) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
141 lines
4.0 KiB
HTML
141 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-TW">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>系統維護中 - WOOO TECH</title>
|
|
<style>
|
|
:root {
|
|
--primary-color: #1e3c72;
|
|
--secondary-color: #2a5298;
|
|
--accent-color: #4F46E5;
|
|
--text-color: #2c3e50;
|
|
--bg-color: #f8f9fa;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
background: linear-gradient(135deg, var(--bg-color) 0%, #e9ecef 100%);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.maintenance-container {
|
|
background: rgba(255, 255, 255, 0.95);
|
|
padding: 3rem 2rem;
|
|
border-radius: 20px;
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
max-width: 600px;
|
|
width: 90%;
|
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.brand-logo {
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1.5rem;
|
|
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.icon-container {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.maintenance-icon {
|
|
width: 120px;
|
|
height: 120px;
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.8rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
p {
|
|
font-size: 1.1rem;
|
|
line-height: 1.6;
|
|
color: #6c757d;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: 0.5rem 1rem;
|
|
background: #fff3cd;
|
|
color: #856404;
|
|
border-radius: 50px;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1.5rem;
|
|
border: 1px solid #ffeeba;
|
|
}
|
|
|
|
.contact-info {
|
|
border-top: 1px solid #eee;
|
|
padding-top: 1.5rem;
|
|
font-size: 0.9rem;
|
|
color: #adb5bd;
|
|
}
|
|
|
|
@keyframes float {
|
|
0% {
|
|
transform: translateY(0px);
|
|
}
|
|
|
|
50% {
|
|
transform: translateY(-15px);
|
|
}
|
|
|
|
100% {
|
|
transform: translateY(0px);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="maintenance-container">
|
|
<div class="brand-logo">WOOO TECH</div>
|
|
|
|
<div class="icon-container">
|
|
<!-- Simple SVG Icon representing Maintenance/Tech (embedded to keep single file) -->
|
|
<svg class="maintenance-icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<circle cx="12" cy="12" r="10" stroke="#1e3c72" stroke-width="2" stroke-opacity="0.2" />
|
|
<path d="M12 6V12L16 14" stroke="#4F46E5" stroke-width="2" stroke-linecap="round"
|
|
stroke-linejoin="round" />
|
|
<circle cx="12" cy="12" r="3" fill="#4F46E5" fill-opacity="0.2" />
|
|
</svg>
|
|
</div>
|
|
|
|
<div class="status-badge">
|
|
🚧 系統維護中 System Maintenance
|
|
</div>
|
|
|
|
<h1>我們正在進行升級</h1>
|
|
<p>
|
|
為了提供更穩定的 AI 決策支持服務,<br>
|
|
WOOO TECH 系統正在進行必要的維護與升級。<br>
|
|
預計將於短時間內恢復服務。
|
|
</p>
|
|
|
|
<div class="contact-info">
|
|
© 2026 WOOO TECH. <br>
|
|
Empowering Families & Business with AI-Driven Technology.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |