.gitignore 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. .DS_Store
  2. node_modules
  3. /build
  4. /.svelte-kit
  5. /package
  6. .env
  7. .env.*
  8. !.env.example
  9. vite.config.js.timestamp-*
  10. vite.config.ts.timestamp-*
  11. # Byte-compiled / optimized / DLL files
  12. __pycache__/
  13. *.py[cod]
  14. *$py.class
  15. # C extensions
  16. *.so
  17. # Pyodide distribution
  18. static/pyodide/*
  19. !static/pyodide/pyodide-lock.json
  20. # Distribution / packaging
  21. .Python
  22. build/
  23. develop-eggs/
  24. dist/
  25. downloads/
  26. eggs/
  27. .eggs/
  28. lib64/
  29. parts/
  30. sdist/
  31. var/
  32. wheels/
  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. *.py,cover
  57. .hypothesis/
  58. .pytest_cache/
  59. cover/
  60. # Translations
  61. *.mo
  62. *.pot
  63. # Django stuff:
  64. *.log
  65. local_settings.py
  66. db.sqlite3
  67. db.sqlite3-journal
  68. # Flask stuff:
  69. instance/
  70. .webassets-cache
  71. # Scrapy stuff:
  72. .scrapy
  73. # Sphinx documentation
  74. docs/_build/
  75. # PyBuilder
  76. .pybuilder/
  77. target/
  78. # Jupyter Notebook
  79. .ipynb_checkpoints
  80. # IPython
  81. profile_default/
  82. ipython_config.py
  83. # pyenv
  84. # For a library or package, you might want to ignore these files since the code is
  85. # intended to run in multiple environments; otherwise, check them in:
  86. # .python-version
  87. # pipenv
  88. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  89. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  90. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  91. # install all needed dependencies.
  92. #Pipfile.lock
  93. # poetry
  94. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  95. # This is especially recommended for binary packages to ensure reproducibility, and is more
  96. # commonly ignored for libraries.
  97. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  98. #poetry.lock
  99. # pdm
  100. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  101. #pdm.lock
  102. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  103. # in version control.
  104. # https://pdm.fming.dev/#use-with-ide
  105. .pdm.toml
  106. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  107. __pypackages__/
  108. # Celery stuff
  109. celerybeat-schedule
  110. celerybeat.pid
  111. # SageMath parsed files
  112. *.sage.py
  113. # Environments
  114. .env
  115. .venv
  116. env/
  117. venv/
  118. ENV/
  119. env.bak/
  120. venv.bak/
  121. # Spyder project settings
  122. .spyderproject
  123. .spyproject
  124. # Rope project settings
  125. .ropeproject
  126. # mkdocs documentation
  127. /site
  128. # mypy
  129. .mypy_cache/
  130. .dmypy.json
  131. dmypy.json
  132. # Pyre type checker
  133. .pyre/
  134. # pytype static type analyzer
  135. .pytype/
  136. # Cython debug symbols
  137. cython_debug/
  138. # PyCharm
  139. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  140. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  141. # and can be added to the global gitignore or merged into this file. For a more nuclear
  142. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  143. .idea/
  144. # Logs
  145. logs
  146. *.log
  147. npm-debug.log*
  148. yarn-debug.log*
  149. yarn-error.log*
  150. lerna-debug.log*
  151. .pnpm-debug.log*
  152. # Diagnostic reports (https://nodejs.org/api/report.html)
  153. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  154. # Runtime data
  155. pids
  156. *.pid
  157. *.seed
  158. *.pid.lock
  159. # Directory for instrumented libs generated by jscoverage/JSCover
  160. lib-cov
  161. # Coverage directory used by tools like istanbul
  162. coverage
  163. *.lcov
  164. # nyc test coverage
  165. .nyc_output
  166. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  167. .grunt
  168. # Bower dependency directory (https://bower.io/)
  169. bower_components
  170. # node-waf configuration
  171. .lock-wscript
  172. # Compiled binary addons (https://nodejs.org/api/addons.html)
  173. build/Release
  174. # Dependency directories
  175. node_modules/
  176. jspm_packages/
  177. # Snowpack dependency directory (https://snowpack.dev/)
  178. web_modules/
  179. # TypeScript cache
  180. *.tsbuildinfo
  181. # Optional npm cache directory
  182. .npm
  183. # Optional eslint cache
  184. .eslintcache
  185. # Optional stylelint cache
  186. .stylelintcache
  187. # Microbundle cache
  188. .rpt2_cache/
  189. .rts2_cache_cjs/
  190. .rts2_cache_es/
  191. .rts2_cache_umd/
  192. # Optional REPL history
  193. .node_repl_history
  194. # Output of 'npm pack'
  195. *.tgz
  196. # Yarn Integrity file
  197. .yarn-integrity
  198. # dotenv environment variable files
  199. .env
  200. .env.development.local
  201. .env.test.local
  202. .env.production.local
  203. .env.local
  204. # parcel-bundler cache (https://parceljs.org/)
  205. .cache
  206. .parcel-cache
  207. # Next.js build output
  208. .next
  209. out
  210. # Nuxt.js build / generate output
  211. .nuxt
  212. dist
  213. # Gatsby files
  214. .cache/
  215. # Comment in the public line in if your project uses Gatsby and not Next.js
  216. # https://nextjs.org/blog/next-9-1#public-directory-support
  217. # public
  218. # vuepress build output
  219. .vuepress/dist
  220. # vuepress v2.x temp and cache directory
  221. .temp
  222. .cache
  223. # Docusaurus cache and generated files
  224. .docusaurus
  225. # Serverless directories
  226. .serverless/
  227. # FuseBox cache
  228. .fusebox/
  229. # DynamoDB Local files
  230. .dynamodb/
  231. # TernJS port file
  232. .tern-port
  233. # Stores VSCode versions used for testing VSCode extensions
  234. .vscode-test
  235. # yarn v2
  236. .yarn/cache
  237. .yarn/unplugged
  238. .yarn/build-state.yml
  239. .yarn/install-state.gz
  240. .pnp.*
  241. # cypress artifacts
  242. cypress/videos
  243. cypress/screenshots
  244. .vscode/settings.json