Skip to content

Commit

Permalink
Add manual
Browse files Browse the repository at this point in the history
  • Loading branch information
yihong1120 committed Jul 10, 2024
1 parent 422d962 commit 2b55d60
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions examples/streaming_web/READMD-zh-tw.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@

## 使用方式

1. **安裝依賴項**
1. **啟動伺服器**
```sh
pip install -r requirements.txt
python app.py
```

2. **啟動伺服器:**
或是

```sh
python app.py
gunicorn -w 1 -k eventlet -b 127.0.0.1:8000 "examples.streaming_web.app:app"
```

3. **打開您的網頁瀏覽器並導航至:**
2. **打開您的網頁瀏覽器並導航至:**
```sh
http://localhost:8000
```
Expand Down
11 changes: 6 additions & 5 deletions examples/streaming_web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@ This section provides an example implementation of a Streaming Web application,

## Usage

1. **Install dependencies:**
1. **Run the server:**
```sh
pip install -r requirements.txt
python app.py
```

2. **Run the server:**
or

```sh
python app.py
gunicorn -w 1 -k eventlet -b 127.0.0.1:8000 "examples.streaming_web.app:app"
```

3. **Open your web browser and navigate to:**
2. **Open your web browser and navigate to:**
```sh
http://localhost:8000
```
Expand Down

0 comments on commit 2b55d60

Please sign in to comment.