.gitignore 955 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # Logs
  2. logs
  3. *.log
  4. # Runtime data
  5. pids
  6. *.pid
  7. *.seed
  8. *.pid.lock
  9. # Directory for instrumented libs generated by jscoverage/JSCover
  10. lib-cov
  11. # Coverage directory used by tools like istanbul
  12. coverage/
  13. # nyc test coverage
  14. .nyc_output
  15. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  16. .grunt
  17. # node-waf configuration
  18. .lock-wscript
  19. # Dependency directory
  20. # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
  21. node_modules/
  22. jspm_packages
  23. # Compiled binary addons (http://nodejs.org/api/addons.html)
  24. build/Release
  25. # Optional npm cache directory
  26. .npm
  27. # Optional REPL history
  28. .node_repl_history
  29. # IDE config
  30. /.idea
  31. # output
  32. output/
  33. output.tar.gz
  34. dist/
  35. #appnpm
  36. app/
  37. runtime/
  38. src/common/config/db.js
  39. # OS generated files #
  40. ######################
  41. .DS_Store
  42. .DS_Store?
  43. ._*
  44. .Spotlight-V100
  45. .Trashes
  46. Icon?
  47. ehthumbs.db
  48. Thumbs.db
  49. db.js
  50. npm-debug
  51. www/static/uploads
  52. #vscode
  53. /.vscode
  54. .svn