29 lines
291 B
Plaintext
29 lines
291 B
Plaintext
# Python 编译文件
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Python 缓存目录
|
|
__pycache__/
|
|
*.egg-info/
|
|
|
|
# 前端构建产物
|
|
frontend/dist/
|
|
dist/
|
|
|
|
# Redis 数据
|
|
redis/data/
|
|
redis/logs/
|
|
|
|
# 数据库数据
|
|
postgres_data/
|
|
|
|
# 依赖目录
|
|
frontend/node_modules/
|
|
|
|
# Trae IDE
|
|
.trae/
|
|
|
|
# 编辑器
|
|
.vscode/
|
|
.idea/ |