智慧水务管理系统 - 精河县供水工程综合管理平台

.dockerignore 450B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Git
  2. .git
  3. .gitignore
  4. # IDE
  5. .idea
  6. .vscode
  7. *.iml
  8. *.iws
  9. *.ipr
  10. # Java build
  11. **/target
  12. !**/target/*.jar
  13. # Node / Frontend
  14. frontend/node_modules
  15. frontend/dist
  16. frontend/.vite
  17. # Python
  18. __pycache__
  19. *.pyc
  20. *.pyo
  21. .venv
  22. venv
  23. # Logs
  24. logs
  25. *.log
  26. # OS
  27. .DS_Store
  28. Thumbs.db
  29. # Docker
  30. docker-compose*.yml
  31. .env
  32. .env.*
  33. !.env.example
  34. # Docs (not needed in images)
  35. docs
  36. *.md
  37. !README.md
  38. # CI/CD
  39. .github
  40. .gitlab-ci.yml
  41. # Mobile (not containerized)
  42. mobile
  43. mobile-app