.gitignore 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. # Created by https://www.toptal.com/developers/gitignore/api/python,serverless,node
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=python,serverless,node
  3. ### Node ###
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. lerna-debug.log*
  11. # Diagnostic reports (https://nodejs.org/api/report.html)
  12. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  13. # Runtime data
  14. pids
  15. *.pid
  16. *.seed
  17. *.pid.lock
  18. # Directory for instrumented libs generated by jscoverage/JSCover
  19. lib-cov
  20. # Coverage directory used by tools like istanbul
  21. coverage
  22. *.lcov
  23. # nyc test coverage
  24. .nyc_output
  25. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  26. .grunt
  27. # Bower dependency directory (https://bower.io/)
  28. bower_components
  29. # node-waf configuration
  30. .lock-wscript
  31. # Compiled binary addons (https://nodejs.org/api/addons.html)
  32. build/Release
  33. # Dependency directories
  34. node_modules/
  35. jspm_packages/
  36. # TypeScript v1 declaration files
  37. typings/
  38. # TypeScript cache
  39. *.tsbuildinfo
  40. # Optional npm cache directory
  41. .npm
  42. # Optional eslint cache
  43. .eslintcache
  44. # Microbundle cache
  45. .rpt2_cache/
  46. .rts2_cache_cjs/
  47. .rts2_cache_es/
  48. .rts2_cache_umd/
  49. # Optional REPL history
  50. .node_repl_history
  51. # Output of 'npm pack'
  52. *.tgz
  53. # Yarn Integrity file
  54. .yarn-integrity
  55. # dotenv environment variables file
  56. .env
  57. .env.test
  58. .env*.local
  59. # parcel-bundler cache (https://parceljs.org/)
  60. .cache
  61. .parcel-cache
  62. # Next.js build output
  63. .next
  64. # Nuxt.js build / generate output
  65. .nuxt
  66. dist
  67. # Gatsby files
  68. .cache/
  69. # Comment in the public line in if your project uses Gatsby and not Next.js
  70. # https://nextjs.org/blog/next-9-1#public-directory-support
  71. # public
  72. # vuepress build output
  73. .vuepress/dist
  74. # Serverless directories
  75. .serverless/
  76. # FuseBox cache
  77. .fusebox/
  78. # DynamoDB Local files
  79. .dynamodb/
  80. # TernJS port file
  81. .tern-port
  82. # Stores VSCode versions used for testing VSCode extensions
  83. .vscode-test
  84. ### Python ###
  85. # Byte-compiled / optimized / DLL files
  86. __pycache__/
  87. *.py[cod]
  88. *$py.class
  89. # C extensions
  90. *.so
  91. # Distribution / packaging
  92. .Python
  93. build/
  94. develop-eggs/
  95. dist/
  96. downloads/
  97. eggs/
  98. .eggs/
  99. lib/
  100. lib64/
  101. parts/
  102. sdist/
  103. var/
  104. wheels/
  105. pip-wheel-metadata/
  106. share/python-wheels/
  107. *.egg-info/
  108. .installed.cfg
  109. *.egg
  110. MANIFEST
  111. # PyInstaller
  112. # Usually these files are written by a python script from a template
  113. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  114. *.manifest
  115. *.spec
  116. # Installer logs
  117. pip-log.txt
  118. pip-delete-this-directory.txt
  119. # Unit test / coverage reports
  120. htmlcov/
  121. .tox/
  122. .nox/
  123. .coverage
  124. .coverage.*
  125. nosetests.xml
  126. coverage.xml
  127. *.cover
  128. *.py,cover
  129. .hypothesis/
  130. .pytest_cache/
  131. pytestdebug.log
  132. # Translations
  133. *.mo
  134. *.pot
  135. # Django stuff:
  136. local_settings.py
  137. db.sqlite3
  138. db.sqlite3-journal
  139. # Flask stuff:
  140. instance/
  141. .webassets-cache
  142. # Scrapy stuff:
  143. .scrapy
  144. # Sphinx documentation
  145. docs/_build/
  146. doc/_build/
  147. # PyBuilder
  148. target/
  149. # Jupyter Notebook
  150. .ipynb_checkpoints
  151. # IPython
  152. profile_default/
  153. ipython_config.py
  154. # pyenv
  155. .python-version
  156. # pipenv
  157. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  158. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  159. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  160. # install all needed dependencies.
  161. #Pipfile.lock
  162. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  163. __pypackages__/
  164. # Celery stuff
  165. celerybeat-schedule
  166. celerybeat.pid
  167. # SageMath parsed files
  168. *.sage.py
  169. # Environments
  170. .venv
  171. env/
  172. venv/
  173. ENV/
  174. env.bak/
  175. venv.bak/
  176. pythonenv*
  177. # Spyder project settings
  178. .spyderproject
  179. .spyproject
  180. # Rope project settings
  181. .ropeproject
  182. # mkdocs documentation
  183. /site
  184. # mypy
  185. .mypy_cache/
  186. .dmypy.json
  187. dmypy.json
  188. # Pyre type checker
  189. .pyre/
  190. # pytype static type analyzer
  191. .pytype/
  192. # profiling data
  193. .prof
  194. ### Serverless ###
  195. # Ignore build directory
  196. .serverless
  197. # End of https://www.toptal.com/developers/gitignore/api/python,serverless,node