# Git
.git/
.gitignore

# IDE
.idea/
*.iml
*.iws
*.ipr
.vscode/
*.swp
*.swo
*~
.DS_Store

# 构建产物
# 注意：frontend/dist 和 backend/build/libs 在使用 BUILD_IN_DOCKER=false 时是必需的
# 所以不能忽略它们。在 BUILD_IN_DOCKER=true 时，它们会被 Docker 内部编译覆盖
backend/.gradle/
backend/out/
backend/bin/
frontend/node_modules/
frontend/.vite/
frontend/.cache/

# 日志
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# 环境配置
.env
.env.local
.env.*.local

# 其他
*.bak
*.backup
*.old
clob-client/
polymarket-demo/

