You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by el...@apache.org on 2023/03/01 00:17:20 UTC

[superset] branch master updated: docs: update installation docs to include frontend asset build (#23199)

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

elizabeth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new ae8aa60844 docs: update installation docs to include frontend asset build (#23199)
ae8aa60844 is described below

commit ae8aa60844d05ac3f7f30b92b0059f2a3cf46b3e
Author: Elizabeth Thompson <es...@gmail.com>
AuthorDate: Tue Feb 28 16:17:12 2023 -0800

    docs: update installation docs to include frontend asset build (#23199)
---
 docs/docs/installation/installing-superset-from-scratch.mdx | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/docs/docs/installation/installing-superset-from-scratch.mdx b/docs/docs/installation/installing-superset-from-scratch.mdx
index c5f051087f..2dd34bc48d 100644
--- a/docs/docs/installation/installing-superset-from-scratch.mdx
+++ b/docs/docs/installation/installing-superset-from-scratch.mdx
@@ -138,6 +138,12 @@ superset load_examples
 # Create default roles and permissions
 superset init
 
+# Build javascript assets
+cd superset-frontend
+npm ci
+npm run build
+cd ..
+
 # To start a development web server on port 8088, use -p to bind to another port
 superset run -p 8088 --with-threads --reload --debugger
 ```