.gitignore 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  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
  133. # Created by https://www.toptal.com/developers/gitignore/api/node
  134. # Edit at https://www.toptal.com/developers/gitignore?templates=node
  135. ### Node ###
  136. # Logs
  137. logs
  138. *.log
  139. npm-debug.log*
  140. yarn-debug.log*
  141. yarn-error.log*
  142. lerna-debug.log*
  143. # Diagnostic reports (https://nodejs.org/api/report.html)
  144. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  145. # Runtime data
  146. pids
  147. *.pid
  148. *.seed
  149. *.pid.lock
  150. # Directory for instrumented libs generated by jscoverage/JSCover
  151. lib-cov
  152. # Coverage directory used by tools like istanbul
  153. coverage
  154. *.lcov
  155. # nyc test coverage
  156. .nyc_output
  157. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  158. .grunt
  159. # Bower dependency directory (https://bower.io/)
  160. bower_components
  161. # node-waf configuration
  162. .lock-wscript
  163. # Compiled binary addons (https://nodejs.org/api/addons.html)
  164. build/Release
  165. # Dependency directories
  166. node_modules/
  167. jspm_packages/
  168. # TypeScript v1 declaration files
  169. typings/
  170. # TypeScript cache
  171. *.tsbuildinfo
  172. # Optional npm cache directory
  173. .npm
  174. # Optional eslint cache
  175. .eslintcache
  176. # Microbundle cache
  177. .rpt2_cache/
  178. .rts2_cache_cjs/
  179. .rts2_cache_es/
  180. .rts2_cache_umd/
  181. # Optional REPL history
  182. .node_repl_history
  183. # Output of 'npm pack'
  184. *.tgz
  185. # Yarn Integrity file
  186. .yarn-integrity
  187. # dotenv environment variables file
  188. .env
  189. .env.test
  190. .env*.local
  191. # parcel-bundler cache (https://parceljs.org/)
  192. .cache
  193. .parcel-cache
  194. # Next.js build output
  195. .next
  196. # Nuxt.js build / generate output
  197. .nuxt
  198. dist
  199. # Gatsby files
  200. .cache/
  201. # Comment in the public line in if your project uses Gatsby and not Next.js
  202. # https://nextjs.org/blog/next-9-1#public-directory-support
  203. # public
  204. # vuepress build output
  205. .vuepress/dist
  206. # Serverless directories
  207. .serverless/
  208. # FuseBox cache
  209. .fusebox/
  210. # DynamoDB Local files
  211. .dynamodb/
  212. # TernJS port file
  213. .tern-port
  214. # Stores VSCode versions used for testing VSCode extensions
  215. .vscode-test
  216. # End of https://www.toptal.com/developers/gitignore/api/node