.gitignore 831 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
  2. # Compiled output
  3. /dist
  4. /tmp
  5. /out-tsc
  6. /bazel-out
  7. # Node
  8. /node_modules
  9. npm-debug.log
  10. yarn-error.log
  11. # IDEs and editors
  12. .idea/
  13. .project
  14. .classpath
  15. .c9/
  16. *.launch
  17. .settings/
  18. *.sublime-workspace
  19. # Visual Studio Code
  20. .vscode/*
  21. !.vscode/settings.json
  22. !.vscode/tasks.json
  23. !.vscode/launch.json
  24. !.vscode/extensions.json
  25. .history/*
  26. # Miscellaneous
  27. /.angular/cache
  28. .sass-cache/
  29. /connect.lock
  30. /coverage
  31. /libpeerconnection.log
  32. testem.log
  33. /typings
  34. __screenshots__/
  35. # System files
  36. .DS_Store
  37. Thumbs.db
  38. # Environment & secrets
  39. .env
  40. .env.*
  41. !.env.example
  42. # Temp / local artifacts
  43. backend/node_modules/
  44. lami-base-v1/.venv/
  45. lami-base-v1/**/node_modules/
  46. # Local docs (not for version control)
  47. backend/docs/P0-功能改造说明.md