Files
MyBlog/README.md
liumangmang 4ce60e65d9 docs(readme): 重构 README 文件内容和结构
- 删除英文 README 完整内容,保留简洁中文版本
- 增加博客介绍与主要内容板块,更加清晰明了
- 添加技术栈说明,涵盖框架、主题、构建工具和语言
- 详细编写快速开始指南,包含安装依赖、本地开发和构建生产版本步骤
- 新增清除缓存开发命令说明
- 补充项目目录结构说明,方便读者理解文件布局
- 引入 MIT 许可证声明,提高项目开源合规性
2025-12-15 23:20:06 +08:00

77 lines
1.8 KiB
Markdown
Raw 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.
# 氓氓的个人博客
## 📝 介绍
一个专注于分享编程知识、技术趋势和开发经验的个人博客,记录学习成长的点点滴滴。
主要内容包括:
- 💻 编程技术Go、Java、前端等
- 🐧 Linux 系统使用与配置
- 🛠️ 实用工具分享
- 📱 应用部署与配置Jellyfin、RustDesk 等)
- 📚 工作日志与技术总结
## 🏗️ 技术栈
- **框架**: [VuePress v2](https://v2.vuepress.vuejs.org/zh/)
- **主题**: [VuePress Theme Hope](https://theme-hope.vuejs.press/zh/)
- **构建工具**: Vite
- **语言**: TypeScript + Vue 3
## 🚀 快速开始
### 安装依赖
```bash
npm install
```
### 本地开发
```bash
npm run docs:dev
```
访问 `http://localhost:8080` 即可预览博客
### 构建生产版本
```bash
npm run docs:build
```
构建产物将生成在 `src/.vuepress/dist` 目录
### 清除缓存开发
```bash
npm run docs:clean-dev
```
## 📂 目录结构
```
.
├── src/
│ ├── .vuepress/ # VuePress 配置
│ │ ├── config.ts # 站点配置
│ │ ├── theme.ts # 主题配置
│ │ ├── navbar.ts # 导航栏配置
│ │ ├── sidebar.ts # 侧边栏配置
│ │ └── styles/ # 自定义样式
│ ├── programming/ # 编程相关文章
│ │ ├── backend/ # 后端Go、Java
│ │ ├── frontend/ # 前端
│ │ ├── linux/ # Linux
│ │ └── docker/ # Docker
│ ├── apps/ # 应用部署
│ ├── tools/ # 工具分享
│ ├── work/ # 工作日志
│ └── README.md # 首页
└── package.json
```
## 📄 License
MIT License