.gitignore 5.1 KB

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