Files
photography/CLAUDE.md
xujiang fdf524a172
Some checks failed
部署后端服务 / 🚀 构建并部署 (push) Has been cancelled
feat: 更新健康检查脚本和依赖
- 将健康检查命令从`/photography-api --health-check`更新为使用新的脚本`/usr/local/bin/health-check.sh`
- 在Dockerfile中添加`wget`作为运行时依赖
- 确保健康检查脚本具有执行权限

此更改提升了健康检查的可靠性和灵活性。
2025-07-16 15:02:27 +08:00

62 lines
1.5 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Photography Portfolio - 项目总览
> 📍 这是一个模块化摄影作品集项目所有模块都有独立的CLAUDE.md文件,所有给我的提示都要用中文
## 🎯 项目结构
```
photography/
├── frontend/ # 🎨 前端Next.js应用
├── admin/ # 📋 管理后台
├── backend/ # 🔧 Go后端API
├── docs/deployment/ # 🚀 部署配置
├── .gitea/workflows/ # ⚙️ CI/CD流程
├── ui/ # 🎨 UI备份
└── scripts/ # 🛠️ 工具脚本
```
## 🚀 快速开始
### 选择工作模块
```bash
# 进入对应模块目录后查看模块CLAUDE.md
# 前端开发
cd frontend && cat CLAUDE.md
# 后端开发
cd backend && cat CLAUDE.md
# 部署配置
cd docs/deployment && cat CLAUDE.md
```
### 常用命令
```bash
# 前端
cd frontend && make dev
# 后端
cd backend && make run
# 部署
cd docs/deployment && ./deploy.sh
```
## 📋 模块指南
| 模块 | 用途 | 入口文件 |
|---|---|---|
| `frontend/` | Next.js前端 | `frontend/CLAUDE.md` |
| `admin/` | 管理后台 | `admin/CLAUDE.md` |
| `backend/` | Go API服务 | `backend/CLAUDE.md` |
| `docs/deployment/` | 服务器部署 | `docs/deployment/CLAUDE.md` |
## 🔗 项目地址
- **网站**: https://photography.iriver.top
- **仓库**: Gitea自动部署
## 🎯 工作原则
1. **模块化**: 每个目录独立工作
2. **轻量级**: 只关注当前模块
3. **文档化**: 每个模块都有专属指导