| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- ######################################################################
- # Build Tools
- .gradle
- !gradle/wrapper/gradle-wrapper.jar
- target/
- !.mvn/wrapper/maven-wrapper.jar
- ######################################################################
- # IDE
- ### STS ###
- .apt_generated
- .classpath
- .factorypath
- .project
- .settings
- .springBeans
- ### IntelliJ IDEA ###
- .idea
- *.iws
- *.iml
- *.ipr
- ### JRebel ###
- rebel.xml
- ### NetBeans ###
- nbproject/private/
- nbbuild/
- dist/
- nbdist/
- .nb-gradle/
- ######################################################################
- # Others
- *.log
- **/.flattened-pom.xml
- *.xml.versionsBackup
- *.swp
- # Git worktrees
- .worktrees/
- !*/build/*.java
- !*/build/*.html
- !*/build/*.xml
- deploy/
- .DS_Store
- node_modules/
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- **/*.log
- # 运行时产物,一律不进版本库:
- # var/logs 服务日志(含将来可能出现的 .gz 滚动日志、heapdump 等非 .log 后缀文件)
- # var/tmp 排查诊断临时文件(SDK 反编译输出、Java Agent、一次性验证脚本与截图等)
- var/
- tests/**/coverage/
- tests/e2e/reports
- selenium-debug.log
- # Editor directories and files
- .vscode
- *.suo
- *.ntvs*
- *.njsproj
- *.sln
- *.local
- package-lock.json
- yarn.lock
- ######################################################################
- # 本地配置文件(避免泄露敏感信息)
- ######################################################################
- # 后端配置
- **/application-dev.yml
- **/application-local.yml
- **/application-dev.properties
- **/application-local.properties
- **/config/application-*.yml
- **/config/application-*.properties
- # 前端配置
- **/.env.local
- **/.env.development.local
- **/vite.config.local.js
- # 其他敏感配置
- **/application-*.yml.*
- **/*config*.local.*
- *.env
- .env
- *.secrets
- forge/db/community-export/
- *docs-dist
- !/docs/vendor/
|