CoolFace
Apppublic

thinkcol/restaurants

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
.gitignore288 linesDownload Raw Back to root
1.chainlit/chat.db2.chainlit/chat_files3 4# Created by https://www.toptal.com/developers/gitignore/api/python,intellij+all,visualstudiocode5# Edit at https://www.toptal.com/developers/gitignore?templates=python,intellij+all,visualstudiocode6 7### Intellij+all ###8# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider9# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/20654483910 11# User-specific stuff12.idea/**/workspace.xml13.idea/**/tasks.xml14.idea/**/usage.statistics.xml15.idea/**/dictionaries16.idea/**/shelf17 18# AWS User-specific19.idea/**/aws.xml20 21# Generated files22.idea/**/contentModel.xml23 24# Sensitive or high-churn files25.idea/**/dataSources/26.idea/**/dataSources.ids27.idea/**/dataSources.local.xml28.idea/**/sqlDataSources.xml29.idea/**/dynamic.xml30.idea/**/uiDesigner.xml31.idea/**/dbnavigator.xml32 33# Gradle34.idea/**/gradle.xml35.idea/**/libraries36 37# Gradle and Maven with auto-import38# When using Gradle or Maven with auto-import, you should exclude module files,39# since they will be recreated, and may cause churn.  Uncomment if using40# auto-import.41# .idea/artifacts42# .idea/compiler.xml43# .idea/jarRepositories.xml44# .idea/modules.xml45# .idea/*.iml46# .idea/modules47# *.iml48# *.ipr49 50# CMake51cmake-build-*/52 53# Mongo Explorer plugin54.idea/**/mongoSettings.xml55 56# File-based project format57*.iws58 59# IntelliJ60out/61 62# mpeltonen/sbt-idea plugin63.idea_modules/64 65# JIRA plugin66atlassian-ide-plugin.xml67 68# Cursive Clojure plugin69.idea/replstate.xml70 71# SonarLint plugin72.idea/sonarlint/73 74# Crashlytics plugin (for Android Studio and IntelliJ)75com_crashlytics_export_strings.xml76crashlytics.properties77crashlytics-build.properties78fabric.properties79 80# Editor-based Rest Client81.idea/httpRequests82 83# Android studio 3.1+ serialized cache file84.idea/caches/build_file_checksums.ser85 86### Intellij+all Patch ###87# Ignore everything but code style settings and run configurations88# that are supposed to be shared within teams.89 90.idea/*91 92!.idea/codeStyles93!.idea/runConfigurations94 95### Python ###96# Byte-compiled / optimized / DLL files97__pycache__/98*.py[cod]99*$py.class100 101# C extensions102*.so103 104# Distribution / packaging105.Python106build/107develop-eggs/108dist/109downloads/110eggs/111.eggs/112lib/113lib64/114parts/115sdist/116var/117wheels/118share/python-wheels/119*.egg-info/120.installed.cfg121*.egg122MANIFEST123 124# PyInstaller125#  Usually these files are written by a python script from a template126#  before PyInstaller builds the exe, so as to inject date/other infos into it.127*.manifest128*.spec129 130# Installer logs131pip-log.txt132pip-delete-this-directory.txt133 134# Unit test / coverage reports135htmlcov/136.tox/137.nox/138.coverage139.coverage.*140.cache141nosetests.xml142coverage.xml143*.cover144*.py,cover145.hypothesis/146.pytest_cache/147cover/148 149# Translations150*.mo151*.pot152 153# Django stuff:154*.log155local_settings.py156db.sqlite3157db.sqlite3-journal158 159# Flask stuff:160instance/161.webassets-cache162 163# Scrapy stuff:164.scrapy165 166# Sphinx documentation167docs/_build/168 169# PyBuilder170.pybuilder/171target/172 173# Jupyter Notebook174.ipynb_checkpoints175 176# IPython177profile_default/178ipython_config.py179 180# pyenv181#   For a library or package, you might want to ignore these files since the code is182#   intended to run in multiple environments; otherwise, check them in:183# .python-version184 185# pipenv186#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.187#   However, in case of collaboration, if having platform-specific dependencies or dependencies188#   having no cross-platform support, pipenv may install dependencies that don't work, or not189#   install all needed dependencies.190#Pipfile.lock191 192# poetry193#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.194#   This is especially recommended for binary packages to ensure reproducibility, and is more195#   commonly ignored for libraries.196#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control197#poetry.lock198 199# pdm200#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.201#pdm.lock202#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it203#   in version control.204#   https://pdm.fming.dev/#use-with-ide205.pdm.toml206 207# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm208__pypackages__/209 210# Celery stuff211celerybeat-schedule212celerybeat.pid213 214# SageMath parsed files215*.sage.py216 217# Environments218.env219.venv220env/221venv/222ENV/223env.bak/224venv.bak/225 226# Spyder project settings227.spyderproject228.spyproject229 230# Rope project settings231.ropeproject232 233# mkdocs documentation234/site235 236# mypy237.mypy_cache/238.dmypy.json239dmypy.json240 241# Pyre type checker242.pyre/243 244# pytype static type analyzer245.pytype/246 247# Cython debug symbols248cython_debug/249 250# PyCharm251#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can252#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore253#  and can be added to the global gitignore or merged into this file.  For a more nuclear254#  option (not recommended) you can uncomment the following to ignore the entire idea folder.255#.idea/256 257### Python Patch ###258# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration259poetry.toml260 261# ruff262.ruff_cache/263 264# LSP config files265pyrightconfig.json266 267### VisualStudioCode ###268.vscode/*269!.vscode/settings.json270!.vscode/tasks.json271!.vscode/launch.json272!.vscode/extensions.json273!.vscode/*.code-snippets274 275# Local History for Visual Studio Code276.history/277 278# Built Visual Studio Code Extensions279*.vsix280 281### VisualStudioCode Patch ###282# Ignore all local history of files283.history284.ionide285 286# End of https://www.toptal.com/developers/gitignore/api/python,intellij+all,visualstudiocode287/.chainlit/chat_files/3105f452-a667-4cd0-b40c-7502c8bc62d2/1bf41236-505a-44b3-9ac4-55efa37a393d.txt288