feat: 更新登录页面和项目文档
All checks were successful
Auto Deploy / build-and-deploy (push) Successful in 32s

- 添加 CLAUDE.md 项目文档
- 添加自动部署脚本
- 修改登录页面"其他登录方式"文本

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-03 09:25:22 +08:00
parent 6a3aa3bf5d
commit d5a795de77
3 changed files with 232 additions and 1 deletions

30
auto-deploy.ps1 Normal file
View File

@@ -0,0 +1,30 @@
# Auto Deploy Script for PowerShell
$SERVER = "43.139.42.137"
$USER = "root"
$REMOTE_PATH = "/home/1panel/www/sites/admin.petshy.tashowz.com/index"
Write-Host "=== Auto Deploy ===" -ForegroundColor Cyan
Write-Host ""
# 1. Build project
Write-Host "Building project..." -ForegroundColor Yellow
pnpm build
if ($LASTEXITCODE -ne 0) {
Write-Host "Build failed" -ForegroundColor Red
exit 1
}
Write-Host "Build complete" -ForegroundColor Green
Write-Host ""
# 2. Upload files
Write-Host "Uploading files to server..." -ForegroundColor Yellow
scp -r dist/* ${USER}@${SERVER}:${REMOTE_PATH}/
if ($LASTEXITCODE -eq 0) {
Write-Host ""
Write-Host "Deploy complete!" -ForegroundColor Green
Write-Host "Visit: http://admin.petshy.tashowz.com" -ForegroundColor Cyan
} else {
Write-Host "Upload failed" -ForegroundColor Red
exit 1
}