You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2021/08/18 16:17:55 UTC

[superset] 01/01: updating makefile

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

hugh pushed a commit to branch hugh/mkfile-improve
in repository https://gitbox.apache.org/repos/asf/superset.git

commit e2f44400a95705a3b9b94f64345f90b484e56948
Author: hughhhh <hu...@gmail.com>
AuthorDate: Wed Aug 18 12:16:17 2021 -0400

    updating makefile
---
 Makefile | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 85027a1..efa2e4b 100644
--- a/Makefile
+++ b/Makefile
@@ -58,7 +58,7 @@ update-py:
 
 update-js:
 	# Install js packages
-	cd superset-frontend; npm install
+	cd superset-frontend; npm ci
 
 venv:
 	# Create a virtual environment and activate it (recommended)
@@ -81,3 +81,9 @@ py-lint: pre-commit
 
 js-format:
 	cd superset-frontend; npm run prettier
+
+flask-app:
+	flask run -p 8088 --with-threads --reload --debugger
+
+node-app:
+	cd superset-frontend; npm run dev-server -- --devserverPort=9001