From ae8aa60844d05ac3f7f30b92b0059f2a3cf46b3e Mon Sep 17 00:00:00 2001 From: Elizabeth Thompson Date: Tue, 28 Feb 2023 16:17:12 -0800 Subject: [PATCH] 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 c5f051087..2dd34bc48 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 ```