mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
ae4277a9a8
* move files * commit the rest of the files * fix lockfile * fix workflow * fix type errors * fix tests * only run ci when certain files change * run correct test command in ci * version * fix pypi script --------- Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
61 lines
670 B
Plaintext
61 lines
670 B
Plaintext
# Python build
|
|
.eggs/
|
|
gradio.egg-info
|
|
dist/
|
|
*.pyc
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
build/
|
|
__tmp/*
|
|
|
|
# JS build
|
|
gradio/templates/cdn
|
|
gradio/templates/frontend
|
|
|
|
# Secrets
|
|
.env
|
|
|
|
# Gradio run artifacts
|
|
*.db
|
|
*.sqlite3
|
|
gradio/launches.json
|
|
flagged/
|
|
gradio_cached_examples/
|
|
tmp.zip
|
|
|
|
# Tests
|
|
.coverage
|
|
coverage.xml
|
|
test.txt
|
|
**/snapshots/**/*.png
|
|
|
|
# Demos
|
|
demo/tmp.zip
|
|
demo/files/*.avi
|
|
demo/files/*.mp4
|
|
demo/all_demos/demos/*
|
|
demo/all_demos/requirements.txt
|
|
demo/*/config.json
|
|
|
|
# Etc
|
|
.idea/*
|
|
.vscode/*
|
|
.DS_Store
|
|
*.bak
|
|
workspace.code-workspace
|
|
*.h5
|
|
|
|
# log files
|
|
.pnpm-debug.log
|
|
|
|
# Local virtualenv for devs
|
|
.venv*
|
|
|
|
# FRP
|
|
gradio/frpc_*
|
|
|
|
# js
|
|
node_modules
|
|
public/build/
|
|
test-results |