From ea803c3d1ce08f643b412d5e58d8cc495f9210a5 Mon Sep 17 00:00:00 2001 From: "Hugh A. Miles II" Date: Fri, 20 Aug 2021 12:31:21 -0400 Subject: [PATCH] feat: Add new dev commands to Makefile (#16327) * updating makefile * Update Makefile --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85027a175f..ef0d3edbec 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