.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. # Java
  2. *.class
  3. *.jar
  4. *.war
  5. *.ear
  6. *.zip
  7. *.tar.gz
  8. *.rar
  9. # Maven
  10. target/
  11. !target/classes/
  12. !target/test-classes/
  13. # IntelliJ IDEA
  14. .idea/
  15. *.iws
  16. *.iml
  17. *.ipr
  18. # Eclipse
  19. .classpath
  20. .project
  21. .settings/
  22. # NetBeans
  23. /nbproject/private/
  24. /nbbuild/
  25. /dist/
  26. /nbdist/
  27. /.nb-gradle/
  28. # VS Code
  29. .vscode/
  30. # Node.js
  31. node_modules/
  32. npm-debug.log*
  33. yarn-debug.log*
  34. yarn-error.log*
  35. # React
  36. /dist/
  37. /build/
  38. /.vite/
  39. # Logs
  40. logs/
  41. *.log
  42. # Runtime data
  43. pids/
  44. *.pid
  45. *.seed
  46. *.pid.lock
  47. # Coverage directory used by tools like istanbul
  48. coverage/
  49. # nyc test coverage
  50. .nyc_output
  51. # Dependency directories
  52. node_modules/
  53. jspm_packages/
  54. # Optional npm cache directory
  55. .npm
  56. # Optional eslint cache
  57. .eslintcache
  58. # Optional REPL history
  59. .node_repl_history
  60. # Output of 'npm pack'
  61. *.tgz
  62. # Yarn Integrity file
  63. .yarn-integrity
  64. # dotenv environment variables file
  65. .env
  66. .env.local
  67. .env.development.local
  68. .env.test.local
  69. .env.production.local
  70. # parcel-bundler cache (https://parceljs.org/)
  71. .cache
  72. .parcel-cache
  73. # next.js build output
  74. .next
  75. # nuxt.js build output
  76. .nuxt
  77. # vuepress build output
  78. .vuepress/dist
  79. # Serverless directories
  80. .serverless
  81. # FuseBox cache
  82. .fusebox/
  83. # DynamoDB Local files
  84. .dynamodb/
  85. # TernJS port file
  86. .tern-port
  87. # OS generated files
  88. .DS_Store
  89. .DS_Store?
  90. ._*
  91. .Spotlight-V100
  92. .Trashes
  93. ehthumbs.db
  94. Thumbs.db
  95. # Windows
  96. Thumbs.db
  97. ehthumbs.db
  98. Desktop.ini
  99. # Linux
  100. *~
  101. # Backup files
  102. *.bak
  103. *.backup
  104. *.tmp
  105. # IDE
  106. *.swp
  107. *.swo
  108. *~
  109. # Database
  110. *.db
  111. *.sqlite
  112. # Application specific
  113. /ruoyi-admin/target/
  114. /ruoyi-common/target/
  115. /ruoyi-framework/target/
  116. /ruoyi-generator/target/
  117. /ruoyi-quartz/target/
  118. /ruoyi-system/target/
  119. # React UI specific
  120. /new-react-admin-ui/node_modules/
  121. /new-react-admin-ui/dist/
  122. /new-react-admin-ui/.vite/
  123. # Package locks (optional - include if you want to commit them)
  124. # package-lock.json
  125. # yarn.lock