8a86334d05
- sandbox.controller.ts: non-stream chat path now calls res.json() instead of returning the value (which NestJS discards in @Res() library mode) - ai-gateway.service.ts: 商汤科技 only registers sensenova model, no longer overwrites deepseek registration - .gitignore: add .playwright-mcp/ and gitea-login.png
71 lines
714 B
Plaintext
Executable File
71 lines
714 B
Plaintext
Executable File
# Dependencies
|
|
node_modules/
|
|
*/node_modules/
|
|
|
|
# Build outputs
|
|
dist/
|
|
*/dist/
|
|
out/
|
|
*/out/
|
|
.next/
|
|
*/.next/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.playwright-mcp/
|
|
gitea-login.png
|
|
.env.*.local
|
|
backend/.env
|
|
frontend/.env.local
|
|
|
|
# Database
|
|
*.db
|
|
*.db-journal
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime data
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
|
|
# Coverage
|
|
coverage/
|
|
*.lcov
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Certificates (keep template, ignore actual certs)
|
|
backend/cert/key/*.pem
|
|
backend/cert/key/*.p12
|
|
backend/cert/key/*.txt
|
|
|
|
# Build cache
|
|
*.tsbuildinfo
|
|
|
|
# AI agent workspace
|
|
.omo/
|
|
|
|
# Temp files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Playwright E2E test output
|
|
test-results/
|
|
playwright-report/
|