From af20948f32a594c3dfec5ea002d295e06b9b7d2c Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Thu, 28 Mar 2019 19:36:07 +0800 Subject: [PATCH] updated Quick Start --- README-zh.md | 10 ++++++++-- README.md | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/README-zh.md b/README-zh.md index dcc04d3c..f90f3284 100644 --- a/README-zh.md +++ b/README-zh.md @@ -29,8 +29,14 @@ npm install ## 快速开始 ```bash -# 运行所有服务 -python manage.py run_all +# 启动后端API +python app.py + +# 启动Flower服务 +python ./bin/run_flower.py + +# 启动worker +python ./bin/run_worker.py ``` ```bash diff --git a/README.md b/README.md index 63bcc77d..7d160185 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,14 @@ Please edit configuration file `config.py` to configure api and database connect ## Quick Start ```bash -# run all services -python manage.py run_all +# Start backend API +python app.py + +# Start Flower service +python ./bin/run_flower.py + +# Start worker +python ./bin/run_worker.py ``` ```bash