mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
53005ab88a
* FRP Poc (#2396) * FRP Poc * Gracefully handle exceptions in thread tunneling * comments * Fix share error message when files are built locally (#2502) * fix share error message * changelog * formatting * tunneling rename * version * formatting * remove test * changelog * version Co-authored-by: Abubakar Abid <abubakar@huggingface.co> Co-authored-by: Wauplin <lucainp@gmail.com> * 2509 * updated url to testing.gradiodash.com * gradiotesting * format, version * gradio.live * temp fix for https * remove unnecessary tests * version * updated tunnel logic * formatting and tests * load testing * changes * Make private method + generate privilege key (#2519) * rm load test * frp * formatting * Update run.py * Update run.py * updated message * share=True * [DO NOT MERGE] Add pymux for FRP (#2747) * Add pymux for FRP * Cleaning pyamux * Cleaning pyamux + make it work * Forgot the thread * Reformat * some logs to be removed afterwards * added share to hello world * Transform into object * I guess it's cleaner now * Handle 404 + Transform to object * Fix params names * Add debug * windows fix Co-authored-by: Wauplin <lucainp@gmail.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co> * removed share=True * formatting * hello world notebook * version * fixes * formatting * testing tunneling exists * tests * formatting * lint * Remove asyncio + kill proc on exit * version * version * update changelog * explicit message about reporting Co-authored-by: Adrien <adrien@xcid.fr> Co-authored-by: Wauplin <lucainp@gmail.com> Co-authored-by: Ali Abid <aabid94@gmail.com>
53 lines
598 B
Plaintext
53 lines
598 B
Plaintext
# Python build
|
|
.eggs/
|
|
gradio.egg-info
|
|
dist/
|
|
*.pyc
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
build/
|
|
|
|
# JS build
|
|
gradio/templates/cdn
|
|
gradio/templates/frontend
|
|
|
|
# Secrets
|
|
.env
|
|
|
|
# Gradio run artifacts
|
|
*.db
|
|
*.sqlite3
|
|
gradio/launches.json
|
|
flagged/
|
|
gradio_cached_examples/
|
|
|
|
# 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/*
|
|
.DS_Store
|
|
*.bak
|
|
workspace.code-workspace
|
|
*.h5
|
|
|
|
# log files
|
|
.pnpm-debug.log
|
|
|
|
# Local virtualenv for devs
|
|
.venv*
|
|
|
|
# FRP
|
|
gradio/frpc_* |