1. 新增按设备分组的端口查询后端API,修复端口过多时部分设备不显示的分页问题 2. 重构前端端口管理页面,改为设备维度分页并移除旧的端口级分页逻辑 3. 统一端口名称自然排序逻辑,优化页面展示顺序 4. 更新部署文档中的容器目录路径 5. 升级项目所有package.json版本到2.1.1 6. 新增两个提案文档到gitignore
124 lines
2.9 KiB
Plaintext
124 lines
2.9 KiB
Plaintext
# ==============================================
|
|
# Dependencies (依赖目录)
|
|
# ==============================================
|
|
node_modules/
|
|
**/node_modules/
|
|
|
|
# ==============================================
|
|
# Build outputs (构建输出)
|
|
# ==============================================
|
|
dist/
|
|
build/
|
|
.vite/
|
|
.next/
|
|
.nuxt/
|
|
|
|
# ==============================================
|
|
# Environment files (环境配置文件)
|
|
# ==============================================
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# ==============================================
|
|
# IDE & Editor (编辑器配置)
|
|
# ==============================================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
|
|
# ==============================================
|
|
# Logs (日志文件)
|
|
# ==============================================
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# ==============================================
|
|
# Database files (数据库文件)
|
|
# ==============================================
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# ==============================================
|
|
# Backup files (备份文件)
|
|
# ==============================================
|
|
backend/backups/*
|
|
!backend/backups/.gitkeep
|
|
*.backup.json
|
|
*.bak
|
|
|
|
# ==============================================
|
|
# Uploads directory (用户上传文件)
|
|
# ==============================================
|
|
backend/uploads/*
|
|
!backend/uploads/.gitkeep
|
|
|
|
# ==============================================
|
|
# Temporary files (临时文件)
|
|
# ==============================================
|
|
backend/temp/*
|
|
!backend/temp/.gitkeep
|
|
*.tmp
|
|
*.temp
|
|
*.cache
|
|
|
|
# ==============================================
|
|
# Data files (数据文件)
|
|
# ==============================================
|
|
*.xlsx
|
|
*.xls
|
|
*.csv
|
|
|
|
# ==============================================
|
|
# Test coverage (测试覆盖率)
|
|
# ==============================================
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# ==============================================
|
|
# Process & Runtime (进程和运行时文件)
|
|
# ==============================================
|
|
.pid
|
|
*.pid
|
|
frontend/.frontend-pid
|
|
frontend/.frontend-port
|
|
|
|
# ==============================================
|
|
# User config files (用户配置文件)
|
|
# ==============================================
|
|
backend/backgroundSettings.json
|
|
backend/fileIndex.json
|
|
backend/config/auto-backup-settings.json
|
|
backend/config/remote-backup-configs.json
|
|
|
|
# ==============================================
|
|
# Misc (其他)
|
|
# ==============================================
|
|
.trae/
|
|
.vercel/
|
|
.gitignore
|
|
.vercelignore
|
|
docs/install-improvement-plan.md
|
|
docs/install-split-plan.md
|
|
|
|
# ==============================================
|
|
# Local-only references (本地参考文档)
|
|
# ==============================================
|
|
deploy/nginx-troubleshooting.md
|
|
docs/trae-creativity-contest-proposal.html
|
|
TRAE-创意提案-IDC设备资产管理系统.html
|