.gitignore 824 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # OS X nonsense
  2. .DS_Store
  3. # Python compiled files
  4. *.pyc
  5. *.pyo
  6. # vim tmp files
  7. .*.swp
  8. .*.swo
  9. # emacs backup files
  10. .*~
  11. # Build directory and environment
  12. build
  13. env
  14. metastore_db
  15. VERSION_INFO
  16. # Generated configuration
  17. desktop/conf/*.ini
  18. # ctags file
  19. tags
  20. TAGS
  21. # Third party build files
  22. *.egg-info/
  23. dist/
  24. # Include top level distribution dir
  25. !/dist/
  26. # Crepo fetched them
  27. ext/thirdparty/js/art-widgets/
  28. ext/thirdparty/js/mootools-table/
  29. ext/thirdparty/js/jframe/
  30. # Make product
  31. desktop/core/ext-py/lxml/src/lxml/lxml-version.h
  32. /VERSION_DATA
  33. # Common "beeswaxd" product
  34. /metastore_db
  35. /derby.log
  36. # Nose --with-id's file
  37. /.noseids
  38. # Coverage product
  39. /.coverage
  40. /coverage.xml
  41. # Common utility alias
  42. /d
  43. # Database of running server
  44. desktop/desktop.db
  45. app.reg
  46. # logs
  47. /logs
  48. desktop/logs
  49. # Maven's target directory
  50. target