CoolFace
Apppublic

beea/open-webui

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
.prettierignore316 linesDownload Raw Back to root
1# Ignore files for PNPM, NPM and YARN2pnpm-lock.yaml3package-lock.json4yarn.lock5 6kubernetes/7 8# Copy of .gitignore9.DS_Store10node_modules11/build12/.svelte-kit13/package14.env15.env.*16!.env.example17vite.config.js.timestamp-*18vite.config.ts.timestamp-*19# Byte-compiled / optimized / DLL files20__pycache__/21*.py[cod]22*$py.class23 24# C extensions25*.so26 27# Distribution / packaging28.Python29build/30develop-eggs/31dist/32downloads/33eggs/34.eggs/35lib64/36parts/37sdist/38var/39wheels/40share/python-wheels/41*.egg-info/42.installed.cfg43*.egg44MANIFEST45 46# PyInstaller47#  Usually these files are written by a python script from a template48#  before PyInstaller builds the exe, so as to inject date/other infos into it.49*.manifest50*.spec51 52# Installer logs53pip-log.txt54pip-delete-this-directory.txt55 56# Unit test / coverage reports57htmlcov/58.tox/59.nox/60.coverage61.coverage.*62.cache63nosetests.xml64coverage.xml65*.cover66*.py,cover67.hypothesis/68.pytest_cache/69cover/70 71# Translations72*.mo73*.pot74 75# Django stuff:76*.log77local_settings.py78db.sqlite379db.sqlite3-journal80 81# Flask stuff:82instance/83.webassets-cache84 85# Scrapy stuff:86.scrapy87 88# Sphinx documentation89docs/_build/90 91# PyBuilder92.pybuilder/93target/94 95# Jupyter Notebook96.ipynb_checkpoints97 98# IPython99profile_default/100ipython_config.py101 102# pyenv103#   For a library or package, you might want to ignore these files since the code is104#   intended to run in multiple environments; otherwise, check them in:105# .python-version106 107# pipenv108#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.109#   However, in case of collaboration, if having platform-specific dependencies or dependencies110#   having no cross-platform support, pipenv may install dependencies that don't work, or not111#   install all needed dependencies.112#Pipfile.lock113 114# poetry115#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.116#   This is especially recommended for binary packages to ensure reproducibility, and is more117#   commonly ignored for libraries.118#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control119#poetry.lock120 121# pdm122#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.123#pdm.lock124#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it125#   in version control.126#   https://pdm.fming.dev/#use-with-ide127.pdm.toml128 129# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm130__pypackages__/131 132# Celery stuff133celerybeat-schedule134celerybeat.pid135 136# SageMath parsed files137*.sage.py138 139# Environments140.env141.venv142env/143venv/144ENV/145env.bak/146venv.bak/147 148# Spyder project settings149.spyderproject150.spyproject151 152# Rope project settings153.ropeproject154 155# mkdocs documentation156/site157 158# mypy159.mypy_cache/160.dmypy.json161dmypy.json162 163# Pyre type checker164.pyre/165 166# pytype static type analyzer167.pytype/168 169# Cython debug symbols170cython_debug/171 172# PyCharm173#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can174#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore175#  and can be added to the global gitignore or merged into this file.  For a more nuclear176#  option (not recommended) you can uncomment the following to ignore the entire idea folder.177.idea/178 179# Logs180logs181*.log182npm-debug.log*183yarn-debug.log*184yarn-error.log*185lerna-debug.log*186.pnpm-debug.log*187 188# Diagnostic reports (https://nodejs.org/api/report.html)189report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json190 191# Runtime data192pids193*.pid194*.seed195*.pid.lock196 197# Directory for instrumented libs generated by jscoverage/JSCover198lib-cov199 200# Coverage directory used by tools like istanbul201coverage202*.lcov203 204# nyc test coverage205.nyc_output206 207# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)208.grunt209 210# Bower dependency directory (https://bower.io/)211bower_components212 213# node-waf configuration214.lock-wscript215 216# Compiled binary addons (https://nodejs.org/api/addons.html)217build/Release218 219# Dependency directories220node_modules/221jspm_packages/222 223# Snowpack dependency directory (https://snowpack.dev/)224web_modules/225 226# TypeScript cache227*.tsbuildinfo228 229# Optional npm cache directory230.npm231 232# Optional eslint cache233.eslintcache234 235# Optional stylelint cache236.stylelintcache237 238# Microbundle cache239.rpt2_cache/240.rts2_cache_cjs/241.rts2_cache_es/242.rts2_cache_umd/243 244# Optional REPL history245.node_repl_history246 247# Output of 'npm pack'248*.tgz249 250# Yarn Integrity file251.yarn-integrity252 253# dotenv environment variable files254.env255.env.development.local256.env.test.local257.env.production.local258.env.local259 260# parcel-bundler cache (https://parceljs.org/)261.cache262.parcel-cache263 264# Next.js build output265.next266out267 268# Nuxt.js build / generate output269.nuxt270dist271 272# Gatsby files273.cache/274# Comment in the public line in if your project uses Gatsby and not Next.js275# https://nextjs.org/blog/next-9-1#public-directory-support276# public277 278# vuepress build output279.vuepress/dist280 281# vuepress v2.x temp and cache directory282.temp283.cache284 285# Docusaurus cache and generated files286.docusaurus287 288# Serverless directories289.serverless/290 291# FuseBox cache292.fusebox/293 294# DynamoDB Local files295.dynamodb/296 297# TernJS port file298.tern-port299 300# Stores VSCode versions used for testing VSCode extensions301.vscode-test302 303# yarn v2304.yarn/cache305.yarn/unplugged306.yarn/build-state.yml307.yarn/install-state.gz308.pnp.*309 310# cypress artifacts311cypress/videos312cypress/screenshots313 314 315 316/static/*