🏥 医疗旅游项目 - 核心信息档案

最后更新: 2026-03-16
更新频率: 关键信息变更时
重要性: 🔴 最高优先级 - 每次会话必须读取


📁 仓库信息(必须记住)

项目 说明
网站仓库 qzw-alt/demi ⚠️ 唯一正确的仓库
网站域名 chinahospitalsguide.com GitHub Pages托管
错误仓库 qzw-alt/medical-tourism-notes ❌ 不是网站,是笔记仓库
本地工作目录 /root/.openclaw/workspace/ 所有文件编辑在这里

为什么有两个仓库?

关键区别: 网站文件必须推送到 demi 仓库才能生效!


🚀 网站部署流程(标准SOP)

每次修改网站后必须执行:

# 1. 编辑文件(在 /root/.openclaw/workspace/ 目录)
# 2. 同步到正确的仓库
cd /tmp
git clone https://github.com/qzw-alt/demi.git website-temp
cp -r /root/.openclaw/workspace/blog/* website-temp/blog/
cp /root/.openclaw/workspace/index.html website-temp/
cp /root/.openclaw/workspace/*.html website-temp/ 2>/dev/null || true

# 3. 提交并推送
cd website-temp
git add .
git config user.email "demi@openclaw.ai"
git config user.name "Demi"
git commit -m "更新描述"
git remote set-url origin https://TOKEN@github.com/qzw-alt/demi.git
git push origin master

# 4. 等待2-5分钟部署
# 5. 验证网站更新

部署检查清单


📂 文件位置规范

网站文件(必须在这)

文件类型 位置 说明
首页 /root/.openclaw/workspace/index.html 网站首页
博客文章 /root/.openclaw/workspace/blog/*.html 所有博客文章
关于页面 /root/.openclaw/workspace/about.html 关于我们
联系页面 /root/.openclaw/workspace/contact.html 联系方式
CNAME /root/.openclaw/workspace/CNAME 自定义域名配置

源文件(编辑用)

文件类型 位置 说明
博客源文件 /root/.openclaw/workspace/docs/blog/*.html 编辑后同步到根目录

📝 博客文章命名规范

[主题]-china-2026.html

示例:
- knee-replacement-surgery-china-2026.html
- ivf-fertility-treatment-china-2026.html
- neurosurgery-brain-tumor-china-2026.html

🎯 网站关键信息

服务套餐

套餐 价格 内容
Starter Guide $30 信息包、指南、签证信息
Standard $299 预约、翻译、行前沟通、邀请函
Premium $799 5天协调、接送、入院协助、出院跟进

关键数据

联系方式


⚠️ 常见错误(避免重复)

错误1:推送到错误仓库

git push origin master (推送到 notes 仓库)
✅ 推送到 qzw-alt/demi 仓库

错误2:只在 docs/ 修改,不同步到根目录

❌ 只修改 docs/blog/ 下的文件
✅ 修改后执行 cp -r docs/* . 同步到根目录

错误3:推送后立即检查网站

❌ 推送完立刻刷新网站
✅ 等待2-5分钟后再检查


🔗 快速链接


🧠 记忆锚点

"网站在 demi 仓库,不是 notes 仓库"

"推送到 demi,等待5分钟,检查网站"

"docs/ 是工作目录,根目录是部署目录"


此文件为医疗旅游项目的核心档案,每次会话必须确认仓库信息正确