.gitignore 2.9 KB

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