CoolFace
Apppublic

akhaliq/anycoder

sourceHugging Faceupdated 5mo agoView on Hugging Face
3.3klikes
.gitignore94 linesDownload Raw Back to root
1# Byte-compiled / optimized / DLL files2__pycache__/3*.py[cod]4*$py.class5 6# C extensions7*.so8 9# Distribution / packaging10.Python11build/12develop-eggs/13dist/14downloads/15eggs/16.eggs/17# Ignore Python lib directories but NOT frontend/src/lib18/lib/19/lib64/20venv/lib/21venv/lib64/22parts/23sdist/24var/25*.egg-info/26.installed.cfg27*.egg28MANIFEST29 30# Virtual environments31venv/32env/33ENV/34.venv/35 36# PyInstaller37*.manifest38*.spec39 40# Installer logs41pip-log.txt42pip-delete-this-directory.txt43 44# Unit test / coverage reports45htmlcov/46.tox/47.nox/48.coverage49.coverage.*50.cache51nosetests.xml52coverage.xml53*.cover54.hypothesis/55.pytest_cache/56 57# Jupyter Notebook58.ipynb_checkpoints59 60# pyenv61.python-version62 63# mypy64.mypy_cache/65.dmypy.json66 67# Pyre type checker68.pyre/69 70# Gradio cache71log/72logs/73 74# Documentation cache files (backend)75.backend_gradio_docs_cache.txt76.backend_gradio_docs_last_update.txt77.gradio_docs_cache.txt78.gradio_docs_last_update.txt79.comfyui_docs_cache.txt80.comfyui_docs_last_update.txt81.fastrtc_docs_cache.txt82.fastrtc_docs_last_update.txt83 84# System files85.DS_Store86Thumbs.db87 88# Lock files89uv.lock90poetry.lock91Pipfile.lock92 93# VSCode94.vscode/