.gitignore 5.2 KB

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