CoolFace
Apppublic

mlukac/xrf-explorer-dev

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
.gitignore181 linesDownload Raw Back to root
1# MAC stuff2.DS_Store3.vscode4*.svg5 6# Claude7.claude8.mcp.json9CLAUDE.md10 11# login credentials12credentials.json13 14# Local database and data files (contains sensitive well data)15data/16 17# Byte-compiled / optimized / DLL files18__pycache__/19*.py[cod]20*$py.class21 22# C extensions23*.so24 25# Distribution / packaging26.Python27build/28develop-eggs/29dist/30downloads/31eggs/32.eggs/33lib/34lib64/35parts/36sdist/37var/38wheels/39share/python-wheels/40*.egg-info/41.installed.cfg42*.egg43MANIFEST44 45# PyInstaller46#  Usually these files are written by a python script from a template47#  before PyInstaller builds the exe, so as to inject date/other infos into it.48*.manifest49*.spec50 51# Installer logs52pip-log.txt53pip-delete-this-directory.txt54 55# Unit test / coverage reports56htmlcov/57.tox/58.nox/59.coverage60.coverage.*61.cache62nosetests.xml63coverage.xml64*.cover65*.py,cover66.hypothesis/67.pytest_cache/68cover/69test-results.xml70pytest-coverage.txt71pytest.xml72pylint_output.txt73 74# Translations75*.mo76*.pot77 78# Django stuff:79*.log80local_settings.py81db.sqlite382db.sqlite3-journal83 84# Flask stuff:85instance/86.webassets-cache87 88# Scrapy stuff:89.scrapy90 91# Sphinx documentation92docs/_build/93 94# PyBuilder95.pybuilder/96target/97 98# Jupyter Notebook99.ipynb_checkpoints100 101# IPython102profile_default/103ipython_config.py104 105# pyenv106#   For a library or package, you might want to ignore these files since the code is107#   intended to run in multiple environments; otherwise, check them in:108# .python-version109 110# pipenv111#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.112#   However, in case of collaboration, if having platform-specific dependencies or dependencies113#   having no cross-platform support, pipenv may install dependencies that don't work, or not114#   install all needed dependencies.115#Pipfile.lock116 117# poetry118#   Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.119#   This is especially recommended for binary packages to ensure reproducibility, and is more120#   commonly ignored for libraries.121#   https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control122#poetry.lock123 124# pdm125#   Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.126#pdm.lock127#   pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it128#   in version control.129#   https://pdm.fming.dev/#use-with-ide130.pdm.toml131 132# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm133__pypackages__/134 135# Celery stuff136celerybeat-schedule137celerybeat.pid138 139# SageMath parsed files140*.sage.py141 142# Environments143.env144.venv145env/146venv/147ENV/148env.bak/149venv.bak/150 151# Spyder project settings152.spyderproject153.spyproject154 155# Rope project settings156.ropeproject157 158# mkdocs documentation159/site160 161# mypy162.mypy_cache/163.dmypy.json164dmypy.json165 166# Pyre type checker167.pyre/168 169# pytype static type analyzer170.pytype/171 172# Cython debug symbols173cython_debug/174 175# PyCharm176#  JetBrains specific template is maintained in a separate JetBrains.gitignore that can177#  be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore178#  and can be added to the global gitignore or merged into this file.  For a more nuclear179#  option (not recommended) you can uncomment the following to ignore the entire idea folder.180#.idea/181