mirror of
https://github.com/7836246/cursor2api.git
synced 2026-09-03 07:20:02 +08:00
- Dockerfile 从 alpine 切换到 slim (Debian) 以支持 Playwright Chromium - 新增 start.sh 入口脚本,ENABLE_STEALTH=true 时自动启动内置 stealth-proxy - docker-compose.yml 简化为单容器方案,默认启用 stealth 模式 - 新增 cookie/stealth_proxy/system_prompt 配置项及环境变量支持 - deploy-all.sh 加入 .gitignore(含敏感服务器信息) - 更新默认指纹为 macOS Chrome 146 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
55 lines
597 B
Plaintext
55 lines
597 B
Plaintext
# Binaries
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# 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
|
|
|
|
# Database
|
|
*.db
|
|
|
|
# Screenshots (dev artifacts)
|
|
*.png
|
|
# Test result artifacts
|
|
test/*-results*.json
|
|
test/ctf-*-results.json
|
|
|
|
# Claude local settings
|
|
.claude/
|
|
|
|
# Vue UI build output and dependencies
|
|
public/vue/
|
|
vue-ui/node_modules/
|
|
|
|
# Deploy scripts (contain sensitive server info)
|
|
deploy-all.sh
|