Files
life-echo/.gitignore
penghanyuan 8af8b7eec6 feat: 添加官网主页路由及静态文件支持
- 在 api/routers 中新增 home.py 路由,提供应用官网主页的 HTML 响应。
- 更新 main.py,包含 home 路由并挂载静态文件目录。
- 新增静态文件 home.html 和 avatar_assistant.png,丰富官网内容。
- 更新 .gitignore,确保 certs/ 目录被忽略。
2026-02-14 21:06:09 +01:00

57 lines
694 B
Plaintext
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.
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.venv
# 环境变量
.env
.env.local
# 注意:.env.production 应该被提交(私密仓库)
# 明确排除 .env.production确保它可以被提交
!.env.production
# 证书与私钥勿提交README 可提交)
api/certs/*.pem
api/certs/*.p12
# 数据库文件
*.db
*.sqlite
*.sqlite3
# IDE
.idea/
.vscode/
*.iml
# 临时文件
*.tmp
*.log
*.swp
*.swo
*~
# 提交消息临时文件
commit_msg_*.txt
commit_plan.txt
commit_messages.txt
# 操作系统
.DS_Store
Thumbs.db
# 构建文件
build/
dist/
*.egg-info/
# 本地 ASR 模型缓存Whisper 每次启动从该目录加载)
api/models/
certs/