39 lines
355 B
Plaintext
39 lines
355 B
Plaintext
# 环境变量(含密码)
|
|
.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.venv/
|
|
|
|
# 数据库
|
|
*.db
|
|
|
|
# 运行时数据
|
|
backend/data/*.bak
|
|
config.json
|
|
ReadoorBranches/
|
|
build/
|
|
|
|
# 日志
|
|
logs/
|
|
|
|
# 服务器 PID
|
|
.server.pid
|
|
.watchdog.pid
|
|
|
|
# 前端
|
|
node_modules/
|
|
frontend/node_modules/
|
|
backend/static/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|