.gitignore 591 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Ignore all
  2. *
  3. # Unignore all with extensions
  4. !*.*
  5. !**/Dockerfile
  6. # Unignore all dirs
  7. !*/
  8. !api
  9. .idea
  10. **/.DS_Store
  11. **/logs
  12. !vendor/github.com/songtianyi/rrframework/logs
  13. **/*.pem
  14. **/*.prof
  15. **/*.p12
  16. !Makefile
  17. # gitlab ci
  18. .cache
  19. # chatbot
  20. **/production.json
  21. **/*.corpus.json
  22. **/*.txt
  23. **/*.gob
  24. # example
  25. example/**/*.csv
  26. # hera
  27. service/hera/cli/readdata/intergrationtest/data
  28. service/hera/devkit/ch331/data
  29. service/hera/devkit/ch331/ck
  30. service/hera/cli/replaybeat/etc
  31. # goctl
  32. tools/goctl/api/autogen
  33. vendor/*
  34. /service/hera/cli/dboperation/etc/hera.json
  35. # vim auto backup file
  36. *~
  37. !OWNERS