.gitignore 743 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # 忽略.idea目录
  2. **/.idea/
  3. # Compiled class file
  4. *.class
  5. # Log file
  6. *.log
  7. # BlueJ files
  8. *.ctxt
  9. # Mobile Tools for Java (J2ME)
  10. .mtj.tmp/
  11. # Package Files #
  12. *.jar
  13. *.war
  14. *.nar
  15. *.ear
  16. *.zip
  17. *.tar.gz
  18. *.rar
  19. # Nignx pidfile
  20. nginx/logs/nginx.pid
  21. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  22. hs_err_pid*
  23. replay_pid*
  24. # 忽略 Maven/构建 输出与运行时文件
  25. /target/
  26. target/
  27. # 忽略本地日志目录(repo 中已有 app.log,建议清理历史提交)
  28. /logs/
  29. # 忽略本地敏感配置样例:请把真实 secret 放到环境变量或不提交的文件中
  30. /src/main/resources/application.yml
  31. # IDE and OS files (keep existing .idea rule but add common OS files)
  32. .DS_Store
  33. Thumbs.db