Spaces:
Runtime error
Runtime error
# 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` | |