.gitignore 968 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. # Local tool/login caches (may contain cookies and form instance data)
  33. .cache/
  34. **/.cache/
  35. # macOS
  36. .DS_Store
  37. */.DS_Store
  38. # 敏感环境配置(dev/test/prod 只入 .example 模板,真实值仅存本地)
  39. **/application-dev.yml
  40. **/application-test.yml
  41. **/application-prod.yml
  42. # 多数据源 / 驱动测试配置(含数据库凭据)
  43. **/driver.yml
  44. # FRP 代理配置(含 token / 公网地址 / dashboard 密码)
  45. **/frpc.ini
  46. **/frps.ini
  47. # 私钥与证书
  48. *.key
  49. *.pem
  50. *.crt
  51. *.p12
  52. *.jks
  53. # web2 file
  54. */src/main/resources/static/web
  55. */src/main/resources/static/mjs