docs: update installation docs to include frontend asset build (#23199)

This commit is contained in:
Elizabeth Thompson 2023-02-28 16:17:12 -08:00 committed by GitHub
parent 473a69a704
commit ae8aa60844
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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
```