mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-22 16:40:25 +00:00
- 修改使用记录API路由路径为 /dashboard/usage-records - 增加对更多账户类型的支持(Bedrock、Azure、Droid、CCR等) - 修复Codex模型识别逻辑,避免 gpt-5-codex 系列被错误归一化 - 在账户管理页面添加状态过滤器(正常/异常) - 在账户管理页面添加限流时间过滤器(≤1h/5h/12h/1d) - 增加账户统计汇总弹窗,按平台分类展示 - 完善仪表盘使用记录展示功能,支持分页加载 - 将 logs1/ 目录添加到 .gitignore 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
250 lines
2.9 KiB
Plaintext
250 lines
2.9 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Claude specific directories
|
|
.claude/
|
|
|
|
# MCP configuration (local only)
|
|
.mcp.json
|
|
.spec-workflow/
|
|
|
|
# Data directory (contains sensitive information)
|
|
data/
|
|
!data/.gitkeep
|
|
|
|
# Redis data directory
|
|
redis_data/
|
|
|
|
# Logs directory
|
|
logs/
|
|
logs1/
|
|
*.log
|
|
startup.log
|
|
app.log
|
|
|
|
# Configuration files (may contain sensitive data)
|
|
config/config.js
|
|
!config/config.example.js
|
|
|
|
# Runtime data
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# Grunt intermediate storage
|
|
.grunt
|
|
|
|
# Bower dependency directory
|
|
bower_components
|
|
|
|
# node-waf configuration
|
|
.lock-wscript
|
|
|
|
# Compiled binary addons
|
|
build/Release
|
|
|
|
# Dependency directories
|
|
jspm_packages/
|
|
|
|
# TypeScript cache
|
|
*.tsbuildinfo
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional stylelint cache
|
|
.stylelintcache
|
|
|
|
# Microbundle cache
|
|
.rpt2_cache/
|
|
.rts2_cache_cjs/
|
|
.rts2_cache_es/
|
|
.rts2_cache_umd/
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# parcel-bundler cache
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# Next.js build output
|
|
.next
|
|
|
|
# Nuxt.js build / generate output
|
|
.nuxt
|
|
# Gatsby files
|
|
.cache/
|
|
public
|
|
|
|
# Vuepress build output
|
|
.vuepress/dist
|
|
|
|
# Serverless directories
|
|
.serverless/
|
|
|
|
# FuseBox cache
|
|
.fusebox/
|
|
|
|
# DynamoDB Local files
|
|
.dynamodb/
|
|
|
|
# TernJS port file
|
|
.tern-port
|
|
|
|
# Stores VSCode versions used for testing VSCode extensions
|
|
.vscode-test
|
|
|
|
# Temporary folders
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
.temp/
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.backup.*
|
|
.env.backup.*
|
|
config.js.backup.*
|
|
*~
|
|
|
|
# Archive files (unless specifically needed)
|
|
*.7z
|
|
*.dmg
|
|
*.gz
|
|
*.iso
|
|
*.jar
|
|
*.rar
|
|
*.tar
|
|
*.zip
|
|
|
|
# Application specific files
|
|
# JWT secrets and encryption keys
|
|
secrets/
|
|
keys/
|
|
certs/
|
|
|
|
# Database dumps
|
|
*.sql
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Redis dumps
|
|
dump.rdb
|
|
appendonly.aof
|
|
|
|
# PM2 files
|
|
ecosystem.config.js
|
|
.pm2/
|
|
|
|
# Docker files (keep main ones, ignore volumes)
|
|
.docker/
|
|
docker-volumes/
|
|
|
|
# Monitoring data
|
|
prometheus/
|
|
grafana/
|
|
|
|
# Test files and coverage
|
|
test-results/
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Documentation build
|
|
docs/build/
|
|
docs/dist/
|
|
|
|
# Deployment files
|
|
deploy/
|
|
.deploy/
|
|
|
|
# Package lock files (choose one)
|
|
# Uncomment the one you DON'T want to track
|
|
# package-lock.json
|
|
# yarn.lock
|
|
# pnpm-lock.yaml
|
|
|
|
# Local development files
|
|
.local/
|
|
local/
|
|
|
|
# Debug files
|
|
debug.log
|
|
error.log
|
|
access.log
|
|
http-debug*.log
|
|
logs/http-debug-*.log
|
|
|
|
src/middleware/debugInterceptor.js
|
|
|
|
# Session files
|
|
sessions/
|
|
|
|
# Upload directories
|
|
uploads/
|
|
files/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
cache/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
out/
|
|
|
|
# Runtime files
|
|
*.sock
|
|
|
|
# Old admin interface (deprecated)
|
|
web/admin/
|
|
web/apiStats/
|
|
|
|
# Admin SPA build files
|
|
web/admin-spa/dist/
|