| 建立 repo + push | 30 分 | | Cloudflare 部署 + DNS | 20 分 | | 調 config.yml | 30 分 | | 調配色 / Logo | 20 分 | | 調內容範例 | 20 分 | | OAuth Worker | 15 分 | | 測試 | 30 分 | | 客戶教學 | 1 小時 | | 總計 | 3-5 小時 |
[[#table-of-contents|← 回目錄]]
附錄 A:完整檔案對照表
| 檔案 | 用途 |
|---|---|
astro.config.mjs | Astro 設定(sitemap、site URL) |
package.json | 依賴 + scripts |
.gitignore | 排除 node_modules、dist |
AGENTS.md | OpenCode 提示 |
PROJECT_NOTES.md | 專案進度記錄 |
src/layouts/Layout.astro | 全域 HTML |
src/components/Header.astro | 導航列(ARIA) |
src/components/Footer.astro | 頁腳 |
src/components/TagList.astro | 標籤元件 |
src/pages/index.astro | 首頁 |
src/pages/blog/index.astro | 部落格列表 |
src/pages/blog/[...slug].astro | 文章 detail |
src/pages/destinations.astro | 目的地列表 |
src/pages/destinations/[slug].astro | 目的地 detail |
src/pages/gallery.astro | 攝影集 + Lightbox |
src/pages/about.astro | 關於我 |
src/pages/contact.astro | 聯絡表單 |
src/pages/admin-guide.astro | 後台使用說明 |
src/pages/404.astro | 404 |
src/pages/rss.xml.ts | RSS Feed |
src/content.config.ts | Content schema |
src/styles/global.css | 全域樣式 |
public/admin/config.yml | Sveltia CMS 設定 |
public/admin/index.html | CMS 入口 |
public/robots.txt | 爬蟲規則 |
public/og-default.svg | OG 圖片 |
oauth-worker/index.js | OAuth Worker |
oauth-worker/wrangler.toml | Worker 部署設定 |
.github/workflows/convert-webp.yml | 自動轉 WebP |
[[#table-of-contents|← 回目錄]]