.gitignore 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. venv/
  2. builds/
  3. ftp.env
  4. src/static/all.css
  5. # Created by https://www.gitignore.io/api/visualstudiocode,python,flask
  6. # Edit at https://www.gitignore.io/?templates=visualstudiocode,python,flask
  7. ### Flask ###
  8. instance/*
  9. !instance/.gitignore
  10. .webassets-cache
  11. ### Flask.Python Stack ###
  12. # Byte-compiled / optimized / DLL files
  13. __pycache__/
  14. *.py[cod]
  15. *$py.class
  16. # C extensions
  17. *.so
  18. # Distribution / packaging
  19. .Python
  20. build/
  21. develop-eggs/
  22. dist/
  23. downloads/
  24. eggs/
  25. .eggs/
  26. lib/
  27. lib64/
  28. parts/
  29. sdist/
  30. var/
  31. wheels/
  32. pip-wheel-metadata/
  33. share/python-wheels/
  34. *.egg-info/
  35. .installed.cfg
  36. *.egg
  37. MANIFEST
  38. # PyInstaller
  39. # Usually these files are written by a python script from a template
  40. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  41. *.manifest
  42. *.spec
  43. # Installer logs
  44. pip-log.txt
  45. pip-delete-this-directory.txt
  46. # Unit test / coverage reports
  47. htmlcov/
  48. .tox/
  49. .nox/
  50. .coverage
  51. .coverage.*
  52. .cache
  53. nosetests.xml
  54. coverage.xml
  55. *.cover
  56. .hypothesis/
  57. .pytest_cache/
  58. # Translations
  59. *.mo
  60. *.pot
  61. # Scrapy stuff:
  62. .scrapy
  63. # Sphinx documentation
  64. docs/_build/
  65. # PyBuilder
  66. target/
  67. # pyenv
  68. .python-version
  69. # pipenv
  70. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  71. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  72. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  73. # install all needed dependencies.
  74. #Pipfile.lock
  75. # celery beat schedule file
  76. celerybeat-schedule
  77. # SageMath parsed files
  78. *.sage.py
  79. # Spyder project settings
  80. .spyderproject
  81. .spyproject
  82. # Rope project settings
  83. .ropeproject
  84. # Mr Developer
  85. .mr.developer.cfg
  86. .project
  87. .pydevproject
  88. # mkdocs documentation
  89. /site
  90. # mypy
  91. .mypy_cache/
  92. .dmypy.json
  93. dmypy.json
  94. # Pyre type checker
  95. .pyre/
  96. ### Python ###
  97. # Byte-compiled / optimized / DLL files
  98. # C extensions
  99. # Distribution / packaging
  100. # PyInstaller
  101. # Usually these files are written by a python script from a template
  102. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  103. # Installer logs
  104. # Unit test / coverage reports
  105. # Translations
  106. # Scrapy stuff:
  107. # Sphinx documentation
  108. # PyBuilder
  109. # pyenv
  110. # pipenv
  111. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  112. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  113. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  114. # install all needed dependencies.
  115. # celery beat schedule file
  116. # SageMath parsed files
  117. # Spyder project settings
  118. # Rope project settings
  119. # Mr Developer
  120. # mkdocs documentation
  121. # mypy
  122. # Pyre type checker
  123. ### VisualStudioCode ###
  124. .vscode/*
  125. !.vscode/settings.json
  126. !.vscode/tasks.json
  127. !.vscode/launch.json
  128. !.vscode/extensions.json
  129. ### VisualStudioCode Patch ###
  130. # Ignore all local history of files
  131. .history
  132. # End of https://www.gitignore.io/api/visualstudiocode,python,flask
  133. src/static/all.css
  134. # Created by https://www.toptal.com/developers/gitignore/api/node
  135. # Edit at https://www.toptal.com/developers/gitignore?templates=node
  136. ### Node ###
  137. # Logs
  138. logs
  139. *.log
  140. npm-debug.log*
  141. yarn-debug.log*
  142. yarn-error.log*
  143. lerna-debug.log*
  144. # Diagnostic reports (https://nodejs.org/api/report.html)
  145. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  146. # Runtime data
  147. pids
  148. *.pid
  149. *.seed
  150. *.pid.lock
  151. # Directory for instrumented libs generated by jscoverage/JSCover
  152. lib-cov
  153. # Coverage directory used by tools like istanbul
  154. coverage
  155. *.lcov
  156. # nyc test coverage
  157. .nyc_output
  158. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  159. .grunt
  160. # Bower dependency directory (https://bower.io/)
  161. bower_components
  162. # node-waf configuration
  163. .lock-wscript
  164. # Compiled binary addons (https://nodejs.org/api/addons.html)
  165. build/Release
  166. # Dependency directories
  167. node_modules/
  168. jspm_packages/
  169. # TypeScript v1 declaration files
  170. typings/
  171. # TypeScript cache
  172. *.tsbuildinfo
  173. # Optional npm cache directory
  174. .npm
  175. # Optional eslint cache
  176. .eslintcache
  177. # Microbundle cache
  178. .rpt2_cache/
  179. .rts2_cache_cjs/
  180. .rts2_cache_es/
  181. .rts2_cache_umd/
  182. # Optional REPL history
  183. .node_repl_history
  184. # Output of 'npm pack'
  185. *.tgz
  186. # Yarn Integrity file
  187. .yarn-integrity
  188. # dotenv environment variables file
  189. .env
  190. .env.test
  191. .env*.local
  192. # parcel-bundler cache (https://parceljs.org/)
  193. .cache
  194. .parcel-cache
  195. # Next.js build output
  196. .next
  197. # Nuxt.js build / generate output
  198. .nuxt
  199. dist
  200. # Gatsby files
  201. .cache/
  202. # Comment in the public line in if your project uses Gatsby and not Next.js
  203. # https://nextjs.org/blog/next-9-1#public-directory-support
  204. # public
  205. # vuepress build output
  206. .vuepress/dist
  207. # Serverless directories
  208. .serverless/
  209. # FuseBox cache
  210. .fusebox/
  211. # DynamoDB Local files
  212. .dynamodb/
  213. # TernJS port file
  214. .tern-port
  215. # Stores VSCode versions used for testing VSCode extensions
  216. .vscode-test
  217. # End of https://www.toptal.com/developers/gitignore/api/node