From c1d06f1197b67ab24ccde315a9544618dc7809ca Mon Sep 17 00:00:00 2001 From: maxmon <541182180@qq.com> Date: Wed, 9 Jun 2021 02:19:31 +0800 Subject: [PATCH] =?UTF-8?q?+=20=E5=A2=9E=E5=8A=A0=E5=BF=AB=E9=80=9F?= =?UTF-8?q?=E5=BC=80=E5=A7=8B=E4=B8=AD=E6=96=87=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/doc_ch/quickstart.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 doc/doc_ch/quickstart.md diff --git a/doc/doc_ch/quickstart.md b/doc/doc_ch/quickstart.md new file mode 100644 index 0000000..cc62915 --- /dev/null +++ b/doc/doc_ch/quickstart.md @@ -0,0 +1,24 @@ +# 快速开始 +## 一、环境配置 +请参考[环境配置](./installation.md)配置whale-anno运行环境。 +## 二、启动项目 +### 1、启动后端 +打开命令行(Windows中的打开方式:进入项目目录,按住键盘上的shift,然后右键,选择在【在此处打开 PowerShell 窗口(S)】) +```shell +# 进入后端目录 +cd ./be +# 启动后端脚本 +python3 ./run.py +``` +*此时项目的后端会被启动在http://localhost:9060/* +### 2、启动前端 +用上述方法,打开一个新的命令行 +```shell +# 进入前端 +cd ./fe +# 启动前端页面 +npm run start +``` +*此时项目的前端会被启动在http://localhost:8080/* +## 三、开始使用 +打开上述前端页面地址,然后请参考[快速使用](./quickuse.md)。