.gitignore 2.9 KB

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