You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/01/11 07:19:44 UTC

[incubator-inlong] branch master updated: [INLONG-2116] Improve the Website README document (#2116) (#2128)

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

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 9caffb1  [INLONG-2116] Improve the Website README document (#2116) (#2128)
9caffb1 is described below

commit 9caffb1073317d223510d877752bed9bd919d038
Author: Johnsomwu <81...@qq.com>
AuthorDate: Tue Jan 11 15:19:39 2022 +0800

    [INLONG-2116] Improve the Website README document (#2116) (#2128)
    
    Co-authored-by: johnsomwu <jo...@tencent.com>
---
 inlong-website/README.md | 28 ++++++++++++++++++++++------
 1 file changed, 22 insertions(+), 6 deletions(-)

diff --git a/inlong-website/README.md b/inlong-website/README.md
index 6f91991..79163bc 100644
--- a/inlong-website/README.md
+++ b/inlong-website/README.md
@@ -2,11 +2,27 @@
 This is a website console for us to use the [Apache InLong incubator](https://github.com/apache/incubator-inlong).
 
 ## Build
-```
-mvn package -DskipTests -Pdocker -pl inlong-website
-```
+
+* Use mvn
+    ```
+    mvn package -DskipTests -Pdocker -pl inlong-website
+    ```
+* Use nodejs
+
+    ```
+    npm run build
+    ```
 
 ## Run
-```
-docker run -d --name website -e MANAGER_API_ADDRESS=127.0.0.1:8083 -p 80:80 inlong/website
-```
\ No newline at end of file
+
+* Use docker
+    ```
+    docker run -d --name website -e MANAGER_API_ADDRESS=127.0.0.1:8083 -p 80:80 inlong/website
+    ```
+
+## Dev
+
+* Use nodejs
+    ```
+    npm run dev
+    ```