.gitignore 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. created by https://www.gitignore.io/api/svn,python,eclipse,pycharm
  2. .env.dev_zbd
  3. .env
  4. .env.testing
  5. .env.production
  6. *.pickle
  7. chromedriver.*
  8. /configs/development_zjl.py
  9. .DS_Store
  10. uploaded/
  11. .vscode/
  12. .testcase/
  13. ### Eclipse ###
  14. .metadata
  15. bin/
  16. tmp/
  17. *.tmp
  18. *.bak
  19. *.swp
  20. *~.nib
  21. local.properties
  22. .settings/
  23. .loadpath
  24. .recommenders
  25. # External tool builders
  26. .externalToolBuilders/
  27. # Locally stored "Eclipse launch configurations"
  28. *.launch
  29. # PyDev specific (Python IDE for Eclipse)
  30. *.pydevproject
  31. # CDT-specific (C/C++ Development Tooling)
  32. .cproject
  33. # Java annotation processor (APT)
  34. .factorypath
  35. # PDT-specific (PHP Development Tools)
  36. .buildpath
  37. # sbteclipse plugin
  38. .target
  39. # Tern plugin
  40. .tern-project
  41. # TeXlipse plugin
  42. .texlipse
  43. # STS (Spring Tool Suite)
  44. .springBeans
  45. # Code Recommenders
  46. .recommenders/
  47. # Scala IDE specific (Scala & Java development for Eclipse)
  48. .cache-main
  49. .scala_dependencies
  50. .worksheet
  51. ### Eclipse Patch ###
  52. # Eclipse Core
  53. .project
  54. # JDT-specific (Eclipse Java Development Tools)
  55. .classpath
  56. ### PyCharm ###
  57. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  58. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  59. # Disable all configs about .idea
  60. .idea
  61. # User-specific stuff:
  62. #.idea/**/workspace.xml
  63. #.idea/**/tasks.xml
  64. #.idea/dictionaries
  65. # Sensitive or high-churn files:
  66. #.idea/**/dataSources/
  67. #.idea/**/dataSources.xml
  68. #.idea/**/dataSources.local.xml
  69. #.idea/**/sqlDataSources.xml
  70. #.idea/**/dynamic.xml
  71. #.idea/**/uiDesigner.xml
  72. # Gradle:
  73. #.idea/**/gradle.xml
  74. #.idea/**/libraries
  75. # CMake
  76. cmake-build-debug/
  77. # Mongo Explorer plugin:
  78. #.idea/**/mongoSettings.xml
  79. ## File-based project format:
  80. *.iws
  81. ## Plugin-specific files:
  82. # IntelliJ
  83. /out/
  84. # mpeltonen/sbt-idea plugin
  85. .idea_modules/
  86. # JIRA plugin
  87. atlassian-ide-plugin.xml
  88. # Cursive Clojure plugin
  89. .idea/*
  90. # Crashlytics plugin (for Android Studio and IntelliJ)
  91. com_crashlytics_export_strings.xml
  92. crashlytics.properties
  93. crashlytics-build.properties
  94. fabric.properties
  95. ### PyCharm Patch ###
  96. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  97. # *.iml
  98. # modules.xml
  99. # .idea/misc.xml
  100. # *.ipr
  101. # Sonarlint plugin
  102. .idea/sonarlint
  103. ### Python ###
  104. # Byte-compiled / optimized / DLL files
  105. __pycache__/
  106. *.py[cod]
  107. *$py.class
  108. # C extensions
  109. *.so
  110. celerybeat.pid
  111. # Distribution / packaging
  112. .Python
  113. /build/
  114. develop-eggs/
  115. dist/
  116. dist_dev/
  117. downloads/
  118. eggs/
  119. .eggs/
  120. lib/
  121. lib64/
  122. parts/
  123. sdist/
  124. var/
  125. wheels/
  126. *.egg-info/
  127. .installed.cfg
  128. *.egg
  129. # PyInstaller
  130. # Usually these files are written by a python script from a template
  131. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  132. *.manifest
  133. *.spec
  134. # Installer logs
  135. pip-log.txt
  136. pip-delete-this-directory.txt
  137. # Unit test / coverage reports
  138. htmlcov/
  139. .tox/
  140. .coverage
  141. .coverage.*
  142. .cache
  143. nosetests.xml
  144. coverage.xml
  145. *.cover
  146. .hypothesis/
  147. # Translations
  148. *.mo
  149. *.pot
  150. # Django stuff:
  151. *.log
  152. local_settings.py
  153. # other log
  154. *.log.*
  155. # Flask stuff:
  156. instance/
  157. .webassets-cache
  158. # Scrapy stuff:
  159. .scrapy
  160. # Sphinx documentation
  161. docs/_build/
  162. # PyBuilder
  163. target/
  164. # Jupyter Notebook
  165. .ipynb_checkpoints
  166. # pyenv
  167. .python-version
  168. # celery beat schedule file
  169. celerybeat-schedule
  170. # SageMath parsed files
  171. *.sage.py
  172. # Environments
  173. .env
  174. .env.*
  175. .venv
  176. env/
  177. venv/
  178. ENV/
  179. env.bak/
  180. venv.bak/
  181. # Spyder project settings
  182. .spyderproject
  183. .spyproject
  184. # Rope project settings
  185. .ropeproject
  186. # mkdocs documentation
  187. /site
  188. # mypy
  189. .mypy_cache/
  190. ### SVN ###
  191. .svn/
  192. node_modules
  193. .access_token*
  194. .jsapi_ticket*
  195. # End of https://www.gitignore.io/api/svn,python,eclipse,pycharm
  196. .access_token_*
  197. .jsapi_ticket_*
  198. .pytest_cache/
  199. latest-pytest-report.html
  200. /configs/dev_zz.py
  201. /testTools/