.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. web_data/*
  2. build/
  3. data/
  4. lib/
  5. venv/
  6. gcloud_key.json
  7. __sapper__/
  8. .rpt2_cache/
  9. *.sqlite
  10. *.env
  11. # ---> Node
  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. db.json
  34. imagestats.csv
  35. clarifai_keys.js
  36. .env
  37. db_old.json
  38. db_migrated.json
  39. *.old
  40. # Created by https://www.gitignore.io/api/python
  41. # Edit at https://www.gitignore.io/?templates=python
  42. ### Python ###
  43. # Byte-compiled / optimized / DLL files
  44. __pycache__/
  45. *.py[cod]
  46. *$py.class
  47. # C extensions
  48. *.so
  49. # Distribution / packaging
  50. .Python
  51. build/
  52. develop-eggs/
  53. dist/
  54. downloads/
  55. eggs/
  56. .eggs/
  57. lib/
  58. lib64/
  59. parts/
  60. sdist/
  61. var/
  62. wheels/
  63. pip-wheel-metadata/
  64. share/python-wheels/
  65. *.egg-info/
  66. .installed.cfg
  67. *.egg
  68. MANIFEST
  69. # PyInstaller
  70. # Usually these files are written by a python script from a template
  71. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  72. *.manifest
  73. *.spec
  74. # Installer logs
  75. pip-log.txt
  76. pip-delete-this-directory.txt
  77. # Unit test / coverage reports
  78. htmlcov/
  79. .tox/
  80. .nox/
  81. .coverage
  82. .coverage.*
  83. .cache
  84. nosetests.xml
  85. coverage.xml
  86. *.cover
  87. .hypothesis/
  88. .pytest_cache/
  89. # Translations
  90. *.mo
  91. *.pot
  92. # Scrapy stuff:
  93. .scrapy
  94. # Sphinx documentation
  95. docs/_build/
  96. # PyBuilder
  97. target/
  98. # pyenv
  99. .python-version
  100. # pipenv
  101. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  102. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  103. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  104. # install all needed dependencies.
  105. #Pipfile.lock
  106. # celery beat schedule file
  107. celerybeat-schedule
  108. # SageMath parsed files
  109. *.sage.py
  110. # Spyder project settings
  111. .spyderproject
  112. .spyproject
  113. # Rope project settings
  114. .ropeproject
  115. # Mr Developer
  116. .mr.developer.cfg
  117. .project
  118. .pydevproject
  119. # mkdocs documentation
  120. /site
  121. # mypy
  122. .mypy_cache/
  123. .dmypy.json
  124. dmypy.json
  125. # Pyre type checker
  126. .pyre/
  127. # End of https://www.gitignore.io/api/python