File size: 1,144 Bytes
d8bf65d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84143a0
 
d8bf65d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# How to Update the Hugging Face Space

Space URL:

```text
https://huggingface.co/spaces/lablab-ai-amd-developer-hackathon/ElevenClip-AI
```

## Manual Upload

1. Open the Space.
2. Click `Files`.
3. Open `index.html`.
4. Click the edit pencil.
5. Replace the default file with the contents of `hf-space/index.html`.
6. Commit the change.
7. Add or edit `README.md`.
8. Replace it with the contents of `hf-space/README.md`.
9. Commit the change.
10. Go back to the `App` tab.

The Space should now show the ElevenClip.AI landing page instead of the default static Space message.

Important: Hugging Face Spaces read their runtime configuration from the YAML block at the very top of `README.md`. Do not remove the opening `---`, `sdk: static`, or `app_file: index.html` lines.

## Git Option

If you have Hugging Face Git credentials configured:

```bash
git clone https://huggingface.co/spaces/lablab-ai-amd-developer-hackathon/ElevenClip-AI
cp hf-space/index.html ElevenClip-AI/index.html
cp hf-space/README.md ElevenClip-AI/README.md
cd ElevenClip-AI
git add index.html README.md
git commit -m "Add ElevenClip.AI landing page"
git push
```