chore: 初始化静态资源仓库基础结构

添加 .gitignore、README 与默认 assets 目录,便于集中管理素材。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
caopeng
2026-05-17 14:56:40 +08:00
commit 759637dba2
3 changed files with 25 additions and 0 deletions

14
.gitignore vendored Normal file
View File

@@ -0,0 +1,14 @@
# OS
.DS_Store
Thumbs.db
desktop.ini
# Editor / IDE
.idea/
.vscode/*
!.vscode/extensions.json
# Archives & temp
*.tmp
*.temp
~$*

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# xmc-Assets
静态资源仓库,用于集中存放图片、音频、字体等素材。
## 目录建议
可按类型划分子目录,例如:`images/``audio/``fonts/` 等;也可按模块或版本再细分。
## 使用说明
将资源文件放入本仓库对应目录后提交;大文件若需 Git LFS请在本地安装并执行 `git lfs install` 后再追踪大文件类型。

0
assets/.gitkeep Normal file
View File