mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
179f5bcde1
* comment out classes in templates TWICE see https://github.com/gradio-app/gradio/issues/6396 for details * add py.typed to hatch artifacts * add py.typed to gitignore * create py.typed in type_check_backend * add changeset * add changeset --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co> Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
80 lines
951 B
Plaintext
80 lines
951 B
Plaintext
# Python build
|
|
.eggs/
|
|
gradio.egg-info
|
|
dist/
|
|
*.pyc
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
build/
|
|
__tmp/*
|
|
*.pyi
|
|
py.typed
|
|
|
|
# JS build
|
|
gradio/templates/*
|
|
gradio/node/*
|
|
gradio/_frontend_code/*
|
|
js/gradio-preview/test/*
|
|
|
|
# Secrets
|
|
.env
|
|
|
|
# Gradio run artifacts
|
|
*.db
|
|
*.sqlite3
|
|
gradio/launches.json
|
|
flagged/
|
|
gradio_cached_examples/
|
|
tmp.zip
|
|
|
|
# Tests
|
|
.coverage
|
|
coverage.xml
|
|
test.txt
|
|
**/snapshots/**/*.png
|
|
playwright-report/
|
|
|
|
# Demos
|
|
demo/tmp.zip
|
|
demo/files/*.avi
|
|
demo/files/*.mp4
|
|
demo/all_demos/demos/*
|
|
demo/all_demos/requirements.txt
|
|
demo/*/config.json
|
|
demo/annotatedimage_component/*.png
|
|
|
|
# Etc
|
|
.idea/*
|
|
.DS_Store
|
|
*.bak
|
|
workspace.code-workspace
|
|
*.h5
|
|
|
|
# dev containers
|
|
.pnpm-store/
|
|
|
|
# log files
|
|
.pnpm-debug.log
|
|
|
|
# Local virtualenv for devs
|
|
.venv*
|
|
|
|
# FRP
|
|
gradio/frpc_*
|
|
.vercel
|
|
|
|
# js
|
|
node_modules
|
|
public/build/
|
|
test-results
|
|
client/js/test.js
|
|
.config/test.py
|
|
|
|
# storybook
|
|
storybook-static
|
|
build-storybook.log
|
|
js/storybook/theme.css
|
|
|
|
# playwright
|
|
.config/playwright/.cache |