You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ba...@apache.org on 2022/05/23 01:18:19 UTC

[apisix-dashboard] branch master updated: docs: update some tips in develop.md (#2451)

This is an automated email from the ASF dual-hosted git repository.

baoyuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new 967038f9 docs: update some tips in develop.md (#2451)
967038f9 is described below

commit 967038f95fa0213bd7eecde2f61f6ca573d97e9a
Author: Yeming Gu <37...@users.noreply.github.com>
AuthorDate: Mon May 23 09:18:14 2022 +0800

    docs: update some tips in develop.md (#2451)
---
 docs/en/latest/develop.md | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/docs/en/latest/develop.md b/docs/en/latest/develop.md
index e35929d5..51b695a7 100644
--- a/docs/en/latest/develop.md
+++ b/docs/en/latest/develop.md
@@ -67,7 +67,13 @@ $ make api-stop
 $ cd ./web
 ```
 
-2. Please change the `manager-api` address in the `config/defaultSettings.ts` file if needed.
+2. Please change the `manager-api` address in the `config/defaultSettings.ts` file. If you follow this guidelines, the address may need to be set as below.
+
+```
+serveUrlMap:{
+    dev: 'http://localhost:9000'
+}
+```
 
 3. Launch development mode
 
@@ -77,4 +83,6 @@ $ yarn install
 $ yarn start
 ```
 
+> If there is an error about gyp during yarn install, please ignore it and go ahead!
+
 4. If writing an front end E2E test, please refer to the [Front End E2E Writing Guide](./front-end-e2e.md)