lanna_lalala;- commited on
Commit ·
6d38b95
1
Parent(s): 91d48f5
readme update
Browse files
README.md
CHANGED
|
@@ -6,11 +6,42 @@ colorTo: red
|
|
| 6 |
sdk: docker
|
| 7 |
app_port: 8501
|
| 8 |
tags:
|
| 9 |
-
- streamlit
|
| 10 |
pinned: false
|
| 11 |
app_file: app.py
|
| 12 |
short_description: This is the frontend to a personal project
|
| 13 |
license: mit
|
| 14 |
---
|
|
|
|
| 15 |
# FinED-Frontend
|
|
|
|
| 16 |
This was created to be a learning web platform for the Jamaican youth to understand financial literacy and numeracy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
sdk: docker
|
| 7 |
app_port: 8501
|
| 8 |
tags:
|
| 9 |
+
- streamlit
|
| 10 |
pinned: false
|
| 11 |
app_file: app.py
|
| 12 |
short_description: This is the frontend to a personal project
|
| 13 |
license: mit
|
| 14 |
---
|
| 15 |
+
|
| 16 |
# FinED-Frontend
|
| 17 |
+
|
| 18 |
This was created to be a learning web platform for the Jamaican youth to understand financial literacy and numeracy
|
| 19 |
+
|
| 20 |
+
Instructions:
|
| 21 |
+
|
| 22 |
+
1. Always pull the latest changes, you can do this the normal way
|
| 23 |
+
|
| 24 |
+
2. Making changes
|
| 25 |
+
|
| 26 |
+
- Open a terminal (Git Bash is fine).
|
| 27 |
+
|
| 28 |
+
```bash
|
| 29 |
+
#Stage your changes
|
| 30 |
+
git add .
|
| 31 |
+
|
| 32 |
+
#Commit with a clear message
|
| 33 |
+
|
| 34 |
+
git commit -m "Describe what you changed"
|
| 35 |
+
|
| 36 |
+
#Push to GitHub
|
| 37 |
+
|
| 38 |
+
git push origin main
|
| 39 |
+
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
This is so you can see the changes in hugging face.
|
| 43 |
+
|
| 44 |
+
- When you open the frontend space in hugging space, go to files and open the readme
|
| 45 |
+
- When you click edit, change the sdk from docker to streamlit, then commit, then a prompt to upgrade streamlit will appear, click and then commit again
|
| 46 |
+
- Then you can go back to app tab, and wait for it to build.
|
| 47 |
+
-
|