.gitignore 863 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. # Intellij project files
  44. .idea/
  45. *.iml
  46. # Database of running server
  47. desktop/desktop.db
  48. app.reg
  49. # logs
  50. /logs
  51. desktop/logs
  52. # Maven's target directory
  53. target