.gitignore 877 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # IntelliJ project files
  2. .idea
  3. *.iml
  4. out
  5. gen
  6. ### Java template
  7. # Compiled class file
  8. *.class
  9. # Log file
  10. *.log
  11. /log/
  12. # BlueJ files
  13. *.ctxt
  14. # Mobile Tools for Java (J2ME)
  15. .mtj.tmp/
  16. # Package Files #
  17. *.jar
  18. *.war
  19. *.nar
  20. *.ear
  21. *.zip
  22. *.tar.gz
  23. *.rar
  24. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  25. hs_err_pid*
  26. mvnw
  27. mvnw.cmd
  28. # tmp file
  29. .tmp
  30. */tmp
  31. */target
  32. # macOS
  33. .DS_Store
  34. */.DS_Store
  35. # 敏感环境配置(dev/test/prod 只入 .example 模板,真实值仅存本地)
  36. **/application-dev.yml
  37. **/application-test.yml
  38. **/application-prod.yml
  39. # 多数据源 / 驱动测试配置(含数据库凭据)
  40. **/driver.yml
  41. # FRP 代理配置(含 token / 公网地址 / dashboard 密码)
  42. **/frpc.ini
  43. **/frps.ini
  44. # 私钥与证书
  45. *.key
  46. *.pem
  47. *.crt
  48. *.p12
  49. *.jks
  50. # web2 file
  51. */src/main/resources/static/web
  52. */src/main/resources/static/mjs