.dockerignore 597 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. *~
  2. */*~
  3. */*/*~
  4. */*/*/*~
  5. */*/*/*/*~
  6. #
  7. local/
  8. # Git
  9. .git
  10. .gitignore
  11. # CI
  12. .codeclimate.yml
  13. .travis.yml
  14. .taskcluster.yml
  15. # Byte-compiled / optimized / DLL files
  16. __pycache__/
  17. */__pycache__/
  18. */*/__pycache__/
  19. */*/*/__pycache__/
  20. *.py[cod]
  21. */*.py[cod]
  22. */*/*.py[cod]
  23. */*/*/*.py[cod]
  24. # to sync with .gitignore
  25. .coverage
  26. coverage/
  27. .installed.cfg
  28. engines.cfg
  29. env
  30. searx-ve
  31. robot_log.html
  32. robot_output.xml
  33. robot_report.html
  34. test_basic/
  35. setup.cfg
  36. # node_modules
  37. node_modules/
  38. */node_modules/
  39. */*/node_modules/
  40. */*/*/node_modules/
  41. */*/*/*/node_modules/
  42. .tx/
  43. #
  44. build/
  45. dist/
  46. local/
  47. gh-pages/
  48. searx.egg-info/