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:54 UTC

[superset] branch hugh/mkfile-improve created (now e2f4440)

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

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


      at e2f4440  updating makefile

This branch includes the following new commits:

     new e2f4440  updating makefile

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[superset] 01/01: updating makefile

Posted by hu...@apache.org.
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