45 lines
420 B
Plaintext
45 lines
420 B
Plaintext
# Git
|
|||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.idea/
|
||
|
|
*.iml
|
||
|
|
*.iws
|
||
|
|
*.ipr
|
||
|
|
.vscode/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
.DS_Store
|
||
|
|
|
||
|
|
# 构建产物
|
||
|
|
backend/build/
|
||
|
|
backend/.gradle/
|
||
|
|
backend/out/
|
||
|
|
backend/bin/
|
||
|
|
frontend/dist/
|
||
|
|
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/
|
||
|
|
|