| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- ######################################################################
- # Build Tools
- .gradle
- /forge-admin-ui/build/
- !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
- 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/
|