Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: update docs about preinstall in deployment #597

Merged
merged 10 commits into from
Oct 24, 2020
Merged
5 changes: 4 additions & 1 deletion docs/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ $ cd apisix-dashboard

The `manager-api` is used to provide APIs for Dashboard, just like a bridge between the Apache APISIX and the Dashboard. Here are the steps to build it manually:

1. We need `Go` 1.13+ and `Lua` 5.1+ to be preinstalled.
1. We need `Go` 1.13+ to be preinstalled.

NOTE: You also need to install `Lua` 5.1+ if you want to use the Plugin Orchestration, we will improve this part and omit Lua's dependency in the future.

2. Check environment variables

Expand Down Expand Up @@ -84,4 +86,5 @@ $ yarn build
```

5. The bundled files are under `/dist` folder if the step 4 is successful, then we recommend using `nginx` to handle those files, please install `nginx` manually, then refer to the nginx conf `compose/dashboard_conf/nginx.conf`.

6. Move files under `dist` folder to nginx's default html folder, then visit `http://127.0.0.1` in your browser.
4 changes: 3 additions & 1 deletion docs/deploy.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ $ cd apisix-dashboard

`manager-api` 用于为控制台提供接口,就像 Apache APISIX 和控制台之间的桥梁。下面是手动构建步骤:

1. 需要预先安装 `Go` 1.13+ 、`Lua` 5.1+
1. 需要预先安装 `Go` 1.13+

如果使用插件编排,需要同时预先安装 `Lua` 5.1+ ,后续版本会对此进行优化,取消对 `Lua` 的依赖

2. 检查环境变量

Expand Down