.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. build/
  2. data/
  3. lib/
  4. venv/
  5. gcloud_key.json
  6. __sapper__/
  7. .rpt2_cache/
  8. *.sqlite
  9. *.env
  10. # ---> Node
  11. # Logs
  12. logs
  13. *.log
  14. npm-debug.log*
  15. # Runtime data
  16. pids
  17. *.pid
  18. *.seed
  19. # Directory for instrumented libs generated by jscoverage/JSCover
  20. lib-cov
  21. # Coverage directory used by tools like istanbul
  22. coverage
  23. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  24. .grunt
  25. # node-waf configuration
  26. .lock-wscript
  27. # Compiled binary addons (http://nodejs.org/api/addons.html)
  28. build/Release
  29. # Dependency directory
  30. # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
  31. node_modules
  32. token.js
  33. package-lock.json
  34. db.json
  35. imagestats.csv
  36. clarifai_keys.js
  37. .env
  38. db_old.json
  39. db_migrated.json
  40. *.old
  41. # Created by https://www.gitignore.io/api/python
  42. # Edit at https://www.gitignore.io/?templates=python
  43. ### Python ###
  44. # Byte-compiled / optimized / DLL files
  45. __pycache__/
  46. *.py[cod]
  47. *$py.class
  48. # C extensions
  49. *.so
  50. # Distribution / packaging
  51. .Python
  52. build/
  53. develop-eggs/
  54. dist/
  55. downloads/
  56. eggs/
  57. .eggs/
  58. lib/
  59. lib64/
  60. parts/
  61. sdist/
  62. var/
  63. wheels/
  64. pip-wheel-metadata/
  65. share/python-wheels/
  66. *.egg-info/
  67. .installed.cfg
  68. *.egg
  69. MANIFEST
  70. # PyInstaller
  71. # Usually these files are written by a python script from a template
  72. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  73. *.manifest
  74. *.spec
  75. # Installer logs
  76. pip-log.txt
  77. pip-delete-this-directory.txt
  78. # Unit test / coverage reports
  79. htmlcov/
  80. .tox/
  81. .nox/
  82. .coverage
  83. .coverage.*
  84. .cache
  85. nosetests.xml
  86. coverage.xml
  87. *.cover
  88. .hypothesis/
  89. .pytest_cache/
  90. # Translations
  91. *.mo
  92. *.pot
  93. # Scrapy stuff:
  94. .scrapy
  95. # Sphinx documentation
  96. docs/_build/
  97. # PyBuilder
  98. target/
  99. # pyenv
  100. .python-version
  101. # pipenv
  102. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  103. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  104. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  105. # install all needed dependencies.
  106. #Pipfile.lock
  107. # celery beat schedule file
  108. celerybeat-schedule
  109. # SageMath parsed files
  110. *.sage.py
  111. # Spyder project settings
  112. .spyderproject
  113. .spyproject
  114. # Rope project settings
  115. .ropeproject
  116. # Mr Developer
  117. .mr.developer.cfg
  118. .project
  119. .pydevproject
  120. # mkdocs documentation
  121. /site
  122. # mypy
  123. .mypy_cache/
  124. .dmypy.json
  125. dmypy.json
  126. # Pyre type checker
  127. .pyre/
  128. # End of https://www.gitignore.io/api/python