.gitignore 1.8 KB

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