Spaces:
Runtime error
Runtime error
File size: 630 Bytes
11a14a4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Steps to upload to huggingface
1. execute in terminal `git clone https://huggingface.co/spaces/<your-username>/<your-repository>`
2. execute in terminal`cd <your-repository>`
3. write your streamlit app in app.py
4. execute in terminal `git add .`
5. if it's your first time setting up git, you are required to provide config by doing executing the following commands
```sh
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
```
https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration
6. execute in terminal `git commit -m "first commit"`
7. execute in terminal `git push`
|