Title: Add HTML render config and update gitignore rules
Key features implemented: - Added html-render-config.json with root directory, index file, and static prefix settings for website rendering - Updated .gitignore to exclude Python cache files, compiled files, logs, and environment files while removing old project-specific entries The changes improve project configuration management and clean up version control exclusions for better development workflow.
This commit is contained in:
33
.gitignore
vendored
33
.gitignore
vendored
@@ -1,23 +1,18 @@
|
||||
.qwen/
|
||||
QWEN.md
|
||||
data/
|
||||
```gitignore
|
||||
# Python cache files
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
|
||||
# 虚拟环境(用户自行创建)
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
# Compiled Python files
|
||||
*.cpython-*.pyc
|
||||
|
||||
# 日志
|
||||
logs/
|
||||
# Logs
|
||||
*.log
|
||||
|
||||
# 签名验证 - 私钥(绝不要提交!)
|
||||
data/signature-verifier/keys/private/
|
||||
|
||||
# 签名文件(可选,本地开发可能不需要)
|
||||
# store/**/SIGNATURE
|
||||
.clinerules
|
||||
website/
|
||||
# Environment files
|
||||
.env
|
||||
.env.local
|
||||
*.env.*
|
||||
```
|
||||
Reference in New Issue
Block a user