Pietro Lesci commited on
Commit
0b4827c
1 Parent(s): d64b68d

update readme

Browse files
Files changed (1) hide show
  1. README.md +18 -5
README.md CHANGED
@@ -3,14 +3,27 @@ title: Wordify
3
  emoji: 🤗
4
  colorFrom: blue
5
  colorTo: blue
 
6
  sdk: streamlit
 
7
  app_file: app.py
8
  pinned: false
9
  ---
10
 
11
 
12
- # To run locally in Docker
13
- 1. Clone this repo
14
- 1. run `make build` to create image
15
- 1. run `make run` to run container and serve the app at localhost:4321
16
- 1. run `make stop` to stop container
 
 
 
 
 
 
 
 
 
 
 
 
3
  emoji: 🤗
4
  colorFrom: blue
5
  colorTo: blue
6
+ python_version: 3.7
7
  sdk: streamlit
8
+ sdk_version: 1.0
9
  app_file: app.py
10
  pinned: false
11
  ---
12
 
13
 
14
+ # Run locally without docker
15
+ ```bash
16
+ streamlit run app.py
17
+ ```
18
+
19
+ # Run locally in Docker
20
+ ```bash
21
+ # create image
22
+ make build
23
+
24
+ # run container and serve the app at localhost:4321
25
+ make run
26
+
27
+ # to stop container
28
+ make stop
29
+ ```