You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by li...@apache.org on 2015/09/19 01:46:59 UTC

[23/50] [abbrv] incubator-kylin git commit: minor, fix dev_env.md about how to download JS

minor, fix dev_env.md about how to download JS


Project: http://git-wip-us.apache.org/repos/asf/incubator-kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-kylin/commit/e73c8220
Tree: http://git-wip-us.apache.org/repos/asf/incubator-kylin/tree/e73c8220
Diff: http://git-wip-us.apache.org/repos/asf/incubator-kylin/diff/e73c8220

Branch: refs/heads/master
Commit: e73c8220905eb3acba271f4432bbbada1545f42f
Parents: ff9189c
Author: Li, Yang <ya...@ebay.com>
Authored: Mon Sep 7 13:58:21 2015 +0800
Committer: Li, Yang <ya...@ebay.com>
Committed: Mon Sep 7 13:59:04 2015 +0800

----------------------------------------------------------------------
 website/_dev/dev_env.md | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/e73c8220/website/_dev/dev_env.md
----------------------------------------------------------------------
diff --git a/website/_dev/dev_env.md b/website/_dev/dev_env.md
index fedeceb..20bb69f 100644
--- a/website/_dev/dev_env.md
+++ b/website/_dev/dev_env.md
@@ -75,18 +75,14 @@ Run a end-to-end cube building test, these special test cases will populate some
 It might take a while (maybe one hour), please keep patient.
  
 {% highlight Groff markup %}
-
-mvn test -Dtest=org.apache.kylin.job.BuildCubeWithEngineTest -DfailIfNoTests=false -P sandbox
-mvn test -Dtest=org.apache.kylin.job.BuildIIWithEngineTest -DfailIfNoTests=false -P sandbox
-	
+	mvn test -Dtest=org.apache.kylin.job.BuildCubeWithEngineTest -DfailIfNoTests=false -P sandbox
+	mvn test -Dtest=org.apache.kylin.job.BuildIIWithEngineTest -DfailIfNoTests=false -P sandbox
 {% endhighlight %}
 	
 Run other tests, the end-to-end cube building test is exclueded
 
 {% highlight Groff markup %}
-
 	mvn test -fae -P sandbox
-
 {% endhighlight %}
 
 ### Launch Kylin Web Server
@@ -94,7 +90,15 @@ Run other tests, the end-to-end cube building test is exclueded
 Copy server/src/main/webapp/WEB-INF to webapp/app/WEB-INF 
 
 {% highlight Groff markup %}
-cp -r server/src/main/webapp/WEB-INF webapp/app/WEB-INF 
+	cp -r server/src/main/webapp/WEB-INF webapp/app/WEB-INF 
+{% endhighlight %}
+
+Download JS for Kylin web GUI. `npm` is part of `Node.js`, please search about how to install it on your OS.
+
+{% highlight Groff markup %}
+	cd webapp
+	npm install -g bower
+	bower --allow-root install
 {% endhighlight %}
 
 In IDE, launch `org.apache.kylin.rest.DebugTomcat` with working directory set to the /server folder. (By default Kylin server will listen on 7070 port; If you want to use another port, please specify it as a parameter when run `DebugTomcat)