mirror of
https://github.com/7836246/cursor2api.git
synced 2026-09-03 07:20:02 +08:00
- 添加 e2e-ctf-bypass.mjs 和 e2e-ctf-proxy.mjs 测试脚本 - .gitignore: 忽略测试结果 JSON 文件 (test/*-results*.json) - .gitignore: 忽略 .claude/ 本地配置目录
50 lines
474 B
Plaintext
50 lines
474 B
Plaintext
# Binaries
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
cursor2api
|
|
|
|
# Go
|
|
vendor/
|
|
*.test
|
|
|
|
# Node
|
|
node_modules/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
.cursor/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
|
|
# Build
|
|
dist/
|
|
build/
|
|
*.traineddata
|
|
|
|
# Config (contains sensitive tokens, use config.yaml.example as template)
|
|
config.yaml
|
|
|
|
# Screenshots (dev artifacts)
|
|
*.png
|
|
# Test result artifacts
|
|
test/*-results*.json
|
|
test/ctf-*-results.json
|
|
|
|
# Claude local settings
|
|
.claude/
|