.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. ################################################
  2. # ┌─┐┬┌┬┐╦╔═╗╔╗╔╔═╗╦═╗╔═╗
  3. # │ ┬│ │ ║║ ╦║║║║ ║╠╦╝║╣
  4. # o└─┘┴ ┴ ╩╚═╝╝╚╝╚═╝╩╚═╚═╝
  5. #
  6. # > Files to exclude from your app's repo.
  7. #
  8. # This file (`.gitignore`) is only relevant if
  9. # you are using git.
  10. #
  11. # It exists to signify to git that certain files
  12. # and/or directories should be ignored for the
  13. # purposes of version control.
  14. #
  15. # This keeps tmp files and sensitive credentials
  16. # from being uploaded to your repository. And
  17. # it allows you to configure your app for your
  18. # machine without accidentally committing settings
  19. # which will smash the local settings of other
  20. # developers on your team.
  21. #
  22. # Some reasonable defaults are included below,
  23. # but, of course, you should modify/extend/prune
  24. # to fit your needs!
  25. #
  26. ################################################
  27. ################################################
  28. # Local Configuration
  29. #
  30. # Explicitly ignore files which contain:
  31. #
  32. # 1. Sensitive information you'd rather not push to
  33. # your git repository.
  34. # e.g., your personal API keys or passwords.
  35. #
  36. # 2. Developer-specific configuration
  37. # Basically, anything that would be annoying
  38. # to have to change every time you do a
  39. # `git pull` on your laptop.
  40. # e.g. your local development database, or
  41. # the S3 bucket you're using for file uploads
  42. # during development.
  43. #
  44. ################################################
  45. config/local.js
  46. ################################################
  47. # Dependencies
  48. #
  49. #
  50. # When releasing a production app, you _could_
  51. # hypothetically include your node_modules folder
  52. # in your git repo, but during development, it
  53. # is always best to exclude it, since different
  54. # developers may be working on different kernels,
  55. # where dependencies would need to be recompiled
  56. # anyway.
  57. #
  58. # Most of the time, the node_modules folder can
  59. # be excluded from your code repository, even
  60. # in production, thanks to features like the
  61. # package-lock.json file / NPM shrinkwrap.
  62. #
  63. # But no matter what, since this is a Sails app,
  64. # you should always push up the package-lock.json
  65. # or shrinkwrap file to your repository, to avoid
  66. # accidentally pulling in upgraded dependencies
  67. # and breaking your code.
  68. #
  69. # That said, if you are having trouble with
  70. # dependencies, (particularly when using
  71. # `npm link`) this can be pretty discouraging.
  72. # But rather than just adding the lockfile to
  73. # your .gitignore, try this first:
  74. # ```
  75. # rm -rf node_modules
  76. # rm package-lock.json
  77. # npm install
  78. # ```
  79. #
  80. # [?] For more tips/advice, come by and say hi
  81. # over at https://sailsjs.com/support
  82. #
  83. ################################################
  84. node_modules
  85. ################################################
  86. #
  87. # > Do you use bower?
  88. # > re: the bower_components dir, see this:
  89. # > http://addyosmani.com/blog/checking-in-front-end-dependencies/
  90. # > (credit Addy Osmani, @addyosmani)
  91. #
  92. ################################################
  93. ################################################
  94. # Temporary files generated by Sails/Waterline.
  95. ################################################
  96. .tmp
  97. ################################################
  98. # Miscellaneous
  99. #
  100. # Common files generated by text editors,
  101. # operating systems, file systems, dbs, etc.
  102. ################################################
  103. *~
  104. *#
  105. .DS_STORE
  106. .netbeans
  107. nbproject
  108. .idea
  109. .node_history
  110. dump.rdb
  111. npm-debug.log
  112. lib-cov
  113. *.seed
  114. *.log
  115. *.out
  116. *.pid