.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. # OS X nonsense
  2. .DS_Store
  3. ._*
  4. # Idea files
  5. .idea
  6. .run
  7. # pip requirements file
  8. .requirements
  9. # Other generated build artifacts by generate_requirements.py
  10. desktop/core/requirements-arm64-*.txt
  11. desktop/core/requirements-aarch64-*.txt
  12. desktop/core/requirements-x86_64-*.txt
  13. # Python version file
  14. .python-version
  15. # Python compiled files
  16. *.pyc
  17. *.pyo
  18. # Language compiled files
  19. apps/*/src/*/locale/*/LC_MESSAGES/*.mo
  20. desktop/core/src/desktop/locale/*/LC_MESSAGES/*.mo
  21. desktop/libs/*/src/*/locale/*/LC_MESSAGES/*.mo
  22. # vim tmp files
  23. .*.swp
  24. .*.swo
  25. # emacs backup files
  26. .*~
  27. # Build directory and environment
  28. build
  29. env
  30. metastore_db
  31. VERSION_INFO
  32. npm_dist
  33. # Build marker files generated by Makefile
  34. .npm-install-lock
  35. desktop/core/ext-env-pip-install
  36. # Python version-specific directories
  37. desktop/core/3.*/
  38. # Generated configuration
  39. desktop/conf/*.ini
  40. # ctags file
  41. tags
  42. TAGS
  43. # Third party build files
  44. *.egg-info/
  45. dist/
  46. # Include top level distribution dir
  47. !/dist/
  48. # Crepo fetched them
  49. ext/thirdparty/js/art-widgets/
  50. ext/thirdparty/js/mootools-table/
  51. ext/thirdparty/js/jframe/
  52. # Make product
  53. desktop/core/ext-py/lxml/src/lxml/lxml-version.h
  54. # Common "beeswaxd" product
  55. /metastore_db
  56. /derby.log
  57. # Nose --with-id's file
  58. /.noseids
  59. # Coverage reports
  60. .coverage*
  61. coverage.xml
  62. reports
  63. # Pytest reports
  64. report.html
  65. # Common utility alias
  66. /d
  67. # Intellij project files
  68. .idea/
  69. *.iml
  70. # Database of running server
  71. desktop/desktop.db
  72. app.reg
  73. # logs
  74. /logs
  75. desktop/logs
  76. # Maven's target directory
  77. target
  78. # Maven's dependency reduced pom
  79. desktop/libs/hadoop/java/dependency-reduced-pom.xml
  80. apps/spark/java/livy-core/dependency-reduced-pom.xml
  81. # Reviewboard config file
  82. .reviewboardrc
  83. # Make files
  84. JAVASCRIPTLINT.txt
  85. PYLINT.txt
  86. desktop/desktop-test.db
  87. ext/hadoop/
  88. ext/hive/
  89. ext/oozie/
  90. oozie.sql
  91. tools/jenkins/ext/
  92. tools/jenkins/oozie.sql
  93. apps/logs
  94. java-lib/
  95. dependency-reduced-pom.xml
  96. # Sublime Text temp files
  97. *.subl*
  98. # Static files
  99. /static
  100. # Node Modules
  101. node_modules/
  102. webpack-stats*.json
  103. junitresults*
  104. # Generated js bundles
  105. desktop/core/src/desktop/static/desktop/js/bundles/
  106. # Hugo generated files
  107. docs/docs-site/public/
  108. # VSCode settings
  109. .vscode
  110. # Test data
  111. desktop/core/src/desktop/test_data/*