Spaces:
Sleeping
Sleeping
added readme config
Browse files- .gitignore +39 -0
- README.md +16 -1
.gitignore
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Ignore everything
|
2 |
+
*
|
3 |
+
|
4 |
+
# But not these files...
|
5 |
+
!.gitignore
|
6 |
+
!*.py
|
7 |
+
!requirements.txt
|
8 |
+
!README.md
|
9 |
+
|
10 |
+
# Even if they are in subdirectories
|
11 |
+
!*/
|
12 |
+
|
13 |
+
# Ignore Python cache files even though we allow .py files
|
14 |
+
__pycache__/
|
15 |
+
*.py[cod]
|
16 |
+
*$py.class
|
17 |
+
|
18 |
+
# Ignore virtual environments
|
19 |
+
venv/
|
20 |
+
env/
|
21 |
+
.env/
|
22 |
+
.venv/
|
23 |
+
|
24 |
+
# Ignore IDE specific files
|
25 |
+
.idea/
|
26 |
+
.vscode/
|
27 |
+
*.swp
|
28 |
+
*.swo
|
29 |
+
|
30 |
+
# Ignore downloaded model files and data
|
31 |
+
*.pkl
|
32 |
+
*.pt
|
33 |
+
*.pth
|
34 |
+
*.bin
|
35 |
+
*.h5
|
36 |
+
|
37 |
+
# Ignore generated files
|
38 |
+
static/
|
39 |
+
*.log
|
README.md
CHANGED
@@ -1 +1,16 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: Gradio Fastapi Static Server
|
3 |
+
emoji: 😻
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: yellow
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 4.44.1
|
8 |
+
app_file: app.py
|
9 |
+
pinned: false
|
10 |
+
hf_oauth: true
|
11 |
+
# optional, default duration is 8 hours/480 minutes. Max duration is 30 days/43200 minutes.
|
12 |
+
hf_oauth_expiration_minutes: 43200
|
13 |
+
|
14 |
+
---
|
15 |
+
|
16 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|