Author: ahyoungryu Date: Sun Mar 5 07:36:28 2017 New Revision: 1785533 URL: http://svn.apache.org/viewvc?rev=1785533&view=rev Log: (empty)
Modified: zeppelin/site/contribution/webapplication.html Modified: zeppelin/site/contribution/webapplication.html URL: http://svn.apache.org/viewvc/zeppelin/site/contribution/webapplication.html?rev=1785533&r1=1785532&r2=1785533&view=diff ============================================================================== --- zeppelin/site/contribution/webapplication.html (original) +++ zeppelin/site/contribution/webapplication.html Sun Mar 5 07:36:28 2017 @@ -450,7 +450,7 @@ limitations under the License. <p>When working on Zeppelin's WebApplication, it is recommended to run in dev mode.</p> -<p>For that, start Zeppelin server normally, then use <code>./grunt serve</code> in <em>zeppelin-web</em> directory.</p> +<p>For that, start Zeppelin server normally, then use <code>yarn run dev</code> in <em>zeppelin-web</em> directory.</p> <p>This will launch a Zeppelin WebApplication on port <strong>9000</strong> that will update on code changes.</p> @@ -490,7 +490,7 @@ please search for its <strong>angularJS< <ul> <li><code>src</code> folder: Contains the Source code for Zeppelin WebApplication</li> -<li><code>dist</code> folder: Contains the compiled code after using <strong>grunt build</strong></li> +<li><code>dist</code> folder: Contains the compiled code after using <strong>yarn run build</strong></li> </ul> <h3>Src and Code Organization</h3> @@ -508,7 +508,8 @@ please search for its <strong>angularJS< | | | âââ subComponent1.css â | | âââ subComponent1.controller.js â â âââ name.css - â âââ app.js + â âââ app.js + â âââ app.controller.js âââ assets/ â âââ images/ â âââ styles/ @@ -522,8 +523,9 @@ please search for its <strong>angularJS< âââ fonts/ | âââ *.{eot,svg,ttf,woff,otf} â âââ *.css - âââ favico.ico + âââ favicon.ico âââ index.html + âââ index.js âââ 404.html </pre> @@ -558,7 +560,7 @@ please search for its <strong>angularJS< etc...</li> </ul> -<p>The only resctiction being that a component in the <code>app</code> folder is <strong>not used anywhere else</strong></p> +<p>The only restriction being that a component in the <code>app</code> folder is <strong>not used anywhere else</strong></p> <h4>Components folder</h4>