add requirements.txt and update .gitignore
Browse files- .gitignore +1 -0
- README.md +10 -0
- requirements.txt +1 -0
.gitignore
CHANGED
@@ -1 +1,2 @@
|
|
1 |
/.idea
|
|
|
|
1 |
/.idea
|
2 |
+
/_tmp
|
README.md
CHANGED
@@ -10,3 +10,13 @@ pinned: false
|
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
13 |
+
|
14 |
+
|
15 |
+
## Local Streamlit application
|
16 |
+
|
17 |
+
The streamlit application can be launched locally
|
18 |
+
|
19 |
+
```bash
|
20 |
+
streamlit run app.py
|
21 |
+
```
|
22 |
+
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
streamlit
|