Spaces:
Runtime error
Runtime error
Steps to upload to huggingface
- execute in terminal
git clone https://huggingface.co/spaces/<your-username>/<your-repository>
- execute in terminal
cd <your-repository>
- write your streamlit app in app.py
- execute in terminal
git add .
- if it's your first time setting up git, you are required to provide config by doing executing the following commands
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
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