kimi0230 commited on
Commit
329e82f
1 Parent(s): 504b5c7

feat: makefile

Browse files
Files changed (2) hide show
  1. README.md +16 -0
  2. makefile +11 -0
README.md CHANGED
@@ -8,5 +8,21 @@ sdk_version: 1.26.0
8
  app_file: app.py
9
  pinned: false
10
  ---
 
 
11
 
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  app_file: app.py
9
  pinned: false
10
  ---
11
+ # Demo Streamlit
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
13
 
14
+ #
15
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
16
+
17
+ streamlit run app.py
18
+
19
+
20
+ ```sh
21
+ # Make sure you have git-lfs installed (https://git-lfs.com)
22
+ git lfs install
23
+ git clone git@hf.co:spaces/kimi0230/DemoStreamlit
24
+
25
+ # if you want to clone without large files – just their pointers
26
+ # prepend your git clone with the following env var:
27
+ GIT_LFS_SKIP_SMUDGE=1
28
+ ```
makefile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ all: start
2
+
3
+ install:
4
+ pip3 install -r requirements.txt
5
+
6
+ start:
7
+ streamlit run app.py
8
+
9
+
10
+
11
+ .PHONY: clean build start install all