docs: 完善仓库文档(README / LICENSE / CONTRIBUTING / CHANGELOG / Issue 与 PR 模板)

- README.md: 仓库门面,含特性、API 文档、快速开始、部署、目录结构、协议

- LICENSE: MIT,约束代码

- ASSET_LICENSE.md: CC BY-NC-SA 4.0,约束表情包素材

- CONTRIBUTING.md: 投稿流程、commit 与分支规范、PR 自检清单

- CHANGELOG.md: Keep a Changelog 格式,1.0.0 首发条目

- .gitignore: 补充 macOS/Windows/IDE/Python/日志等忽略项

- .github/ISSUE_TEMPLATE/: bug / feature / question 三个模板

- .github/PULL_REQUEST_TEMPLATE.md: 含素材来源声明与自检清单
This commit is contained in:
2026-06-04 22:03:02 +08:00
parent e1bfa7a712
commit 1975e51960
10 changed files with 942 additions and 0 deletions

67
.gitignore vendored
View File

@@ -1,7 +1,74 @@
# ----- 构建产物 -----
dist/
node_modules/
.wrangler/
# ----- 临时 / 私密 -----
.dev.vars
.env
.env.local
*.local
tmp/
temp/
# ----- 日志 -----
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# ----- Python -----
__pycache__/
*.py[cod]
*$py.class
*.pyc
.venv/
venv/
env/
ENV/
.python-version
.mypy_cache/
.pytest_cache/
.ruff_cache/
*.egg-info/
# ----- 操作系统残留 -----
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# Windows
Thumbs.db
ehthumbs.db
ehthumbs_vista.db
Desktop.ini
$RECYCLE.BIN/
# ----- IDE / 编辑器 -----
.idea/
.vscode/
*.swp
*.swo
*.swn
*~
# ----- 备份 -----
*.bak
*.orig
*.rej
# ----- 工具缓存 -----
.eslintcache
.cache/
.parcel-cache/
.turbo/
# ----- 其它 -----
# 视频/音频预览(避免误提交原始素材)
*.psd
*.ai
*.sketch
*.fig