Spaces:
Runtime error
Runtime error
Create .gitnore
Browse files
.gitnore
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python build
|
| 2 |
+
.eggs/
|
| 3 |
+
gradio.egg-info/*
|
| 4 |
+
!gradio.egg-info/requires.txt
|
| 5 |
+
!gradio.egg-info/PKG-INFO
|
| 6 |
+
dist/
|
| 7 |
+
*.pyc
|
| 8 |
+
__pycache__/
|
| 9 |
+
*.py[cod]
|
| 10 |
+
*$py.class
|
| 11 |
+
build/
|
| 12 |
+
|
| 13 |
+
# JS build
|
| 14 |
+
gradio/templates/frontend
|
| 15 |
+
# Secrets
|
| 16 |
+
.env
|
| 17 |
+
|
| 18 |
+
# Gradio run artifacts
|
| 19 |
+
*.db
|
| 20 |
+
*.sqlite3
|
| 21 |
+
gradio/launches.json
|
| 22 |
+
flagged/
|
| 23 |
+
gradio_cached_examples/
|
| 24 |
+
|
| 25 |
+
# Tests
|
| 26 |
+
.coverage
|
| 27 |
+
coverage.xml
|
| 28 |
+
test.txt
|
| 29 |
+
|
| 30 |
+
# Demos
|
| 31 |
+
demo/tmp.zip
|
| 32 |
+
demo/files/*.avi
|
| 33 |
+
demo/files/*.mp4
|
| 34 |
+
|
| 35 |
+
# Etc
|
| 36 |
+
.idea/*
|
| 37 |
+
.DS_Store
|
| 38 |
+
*.bak
|
| 39 |
+
workspace.code-workspace
|
| 40 |
+
*.h5
|
| 41 |
+
.vscode/
|
| 42 |
+
|
| 43 |
+
# log files
|
| 44 |
+
.pnpm-debug.log
|
| 45 |
+
venv/
|
| 46 |
+
*.db-journal
|