# 项目概述
## 安装依赖
```
$ cd xxx
$ npm install
```

## 运行项目
### 开发环境
```
$ npm start
```

### 线上部署
```
$ git clone xxxxxx
$ cd xxxxxx
$ npm install
$ npm run build
$ pm2 start app.json --env production
```
