.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ################################################
  2. ############### .gitignore ##################
  3. ################################################
  4. #
  5. # This file is only relevant if you are using git.
  6. #
  7. # Files which match the splat patterns below will
  8. # be ignored by git. This keeps random crap and
  9. # and sensitive credentials from being uploaded to
  10. # your repository. It allows you to configure your
  11. # app for your machine without accidentally
  12. # committing settings which will smash the local
  13. # settings of other developers on your team.
  14. #
  15. # Some reasonable defaults are included below,
  16. # but, of course, you should modify/extend/prune
  17. # to fit your needs!
  18. ################################################
  19. ################################################
  20. # Local Configuration
  21. #
  22. # Explicitly ignore files which contain:
  23. #
  24. # 1. Sensitive information you'd rather not push to
  25. # your git repository.
  26. # e.g., your personal API keys or passwords.
  27. #
  28. # 2. Environment-specific configuration
  29. # Basically, anything that would be annoying
  30. # to have to change every time you do a
  31. # `git pull`
  32. # e.g., your local development database, or
  33. # the S3 bucket you're using for file uploads
  34. # development.
  35. #
  36. ################################################
  37. config/local.js
  38. ################################################
  39. # Dependencies
  40. #
  41. # When releasing a production app, you may
  42. # consider including your node_modules and
  43. # bower_components directory in your git repo,
  44. # but during development, its best to exclude it,
  45. # since different developers may be working on
  46. # different kernels, where dependencies would
  47. # need to be recompiled anyway.
  48. #
  49. # More on that here about node_modules dir:
  50. # http://www.futurealoof.com/posts/nodemodules-in-git.html
  51. # (credit Mikeal Rogers, @mikeal)
  52. #
  53. # About bower_components dir, you can see this:
  54. # http://addyosmani.com/blog/checking-in-front-end-dependencies/
  55. # (credit Addy Osmani, @addyosmani)
  56. #
  57. ################################################
  58. node_modules
  59. bower_components
  60. ################################################
  61. # Sails.js / Waterline / Grunt
  62. #
  63. # Files generated by Sails and Grunt, or related
  64. # tasks and adapters.
  65. ################################################
  66. .tmp
  67. dump.rdb
  68. ################################################
  69. # Node.js / NPM
  70. #
  71. # Common files generated by Node, NPM, and the
  72. # related ecosystem.
  73. ################################################
  74. lib-cov
  75. *.seed
  76. *.log
  77. *.out
  78. *.pid
  79. npm-debug.log
  80. ################################################
  81. # Miscellaneous
  82. #
  83. # Common files generated by text editors,
  84. # operating systems, file systems, etc.
  85. ################################################
  86. *~
  87. *#
  88. .DS_STORE
  89. .netbeans
  90. nbproject
  91. .idea
  92. .node_history