Files
WeKnora/.gitignore
wizardchen d387fd672f chore: Update .gitignore and Makefile for development enhancements
- Added 'logs/' and '*.pid' to .gitignore to exclude log files and process ID files from version control.
- Expanded Makefile with new development commands for easier local environment management, including 'dev-start', 'dev-stop', 'dev-restart', 'dev-logs', 'dev-status', 'dev-app', and 'dev-frontend'.
- Updated README_CN.md to include instructions for the new development mode and commands for improved developer experience.
2025-11-07 15:52:52 +08:00

42 lines
471 B
Plaintext

# 忽略.env文件和其他包含敏感信息的配置文件
.env
# 但不忽略示例文件
!.env.example
*.pem
*_key
*_secret
*.key
*.crt
# IDE和编辑器文件
.idea/
.vscode/
*.swp
*.swo
# 构建和依赖文件
node_modules/
/dist/
/build/
*.log
# 临时文件
tmp/
temp/
logs/
*.pid
WeKnora
/models/
services/docreader/src/proto/__pycache__
test/data/mswag.txt
data/files/
.python-version
.venv/
### macOS
# General
.DS_Store
/scripts/scale_dev_jobs.sh
server