Files
PolyHermes/.gitignore
T
WrBug 389a758c89 fix: 修复交易统计和L2认证问题
- 修复交易统计数据计算逻辑(总订单数、已完成订单数、持仓数量)
- 修复L2认证签名生成,支持URL-safe base64格式的secret
- 添加标准HTTP请求头以匹配clob-client行为
- 移除数据库加密(私人应用,明文存储)
- 添加自动获取API Key功能
- 优化持仓数量统计(包括正负仓位)
- 添加EIP-712签名和L1认证支持
- 更新前端账户管理界面
2025-11-26 22:26:50 +08:00

102 lines
1.2 KiB
Plaintext

# IDE
.idea/
*.iml
*.iws
*.ipr
.vscode/
*.swp
*.swo
*~
.DS_Store
# Gradle
backend/.gradle/
backend/build/
backend/bin/
backend/out/
backend/*.log
backend/gradle-app.setting
backend/.gradle
backend/gradle-wrapper.jar
# Kotlin
*.kt.bak
*.class
# Java
*.jar
*.war
*.ear
*.class
hs_err_pid*
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.pnpm-store/
polymarket-trading-bot/
# Frontend build
frontend/dist/
frontend/.vite/
frontend/.cache/
frontend/.temp/
frontend/.tmp/
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
*.env
# Application properties (may contain sensitive data)
backend/src/main/resources/application-local.properties
backend/src/main/resources/application-dev.properties
backend/src/main/resources/application-prod.properties
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# OS
.DS_Store
Thumbs.db
*.swp
*.swo
*~
# Database
*.db
*.sqlite
*.sqlite3
# Temporary files
*.tmp
*.temp
.cache/
# Coverage
coverage/
*.lcov
.nyc_output/
# Test
test-results/
*.test.log
# Misc
*.bak
*.backup
*.old