- Add Python virtual environment patterns to .gitignore - Replace .codebuddy with .clinerules in .gitignore - Add .pid file for process tracking - Add comprehensive .pylintrc configuration for Python linting - Update start.bat with English translations and simplified functions
22 lines
303 B
Plaintext
22 lines
303 B
Plaintext
.qwen/
|
|
QWEN.md
|
|
data/
|
|
|
|
# 虚拟环境(用户自行创建)
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# 日志
|
|
logs/
|
|
*.log
|
|
|
|
# 签名验证 - 私钥(绝不要提交!)
|
|
data/signature-verifier/keys/private/
|
|
|
|
# 签名文件(可选,本地开发可能不需要)
|
|
# store/**/SIGNATURE
|
|
.clinerules |