Week 1: Principles & Practices / Project Management 第1周:原则与实践 / 项目管理

Assignment Checklist 作业清单


Building This Website 搭建本网站

This week I focused on setting up the documentation workflow for my Fab Academy journey. The website is built using plain HTML, CSS, and JavaScript — keeping things simple and easy to maintain. The site is hosted on GitLab Pages, which automatically deploys the public/ folder every time changes are pushed to the repository. 本周我专注于为 Fab Academy 学习之旅搭建文档工作流程。网站使用原生 HTMLCSSJavaScript 搭建——保持简单易维护。网站托管在 GitLab Pages 上,每次将更改推送到仓库时会自动部署 public/ 文件夹。

Website Features 网站特性

Git Workflow Git 工作流程

I use Git for version control. The basic workflow is: 我使用 Git 进行版本控制。基本工作流程如下:

git add .
git commit -m "describe changes"
git push

The site is automatically rebuilt and deployed by GitLab CI every time a commit is pushed to the main branch. 每次将提交推送到主分支时,GitLab CI 会自动重新构建并部署网站。

Useful Resources 有用的资源