Skip to content

Commit

Permalink
feat: Add new dev commands to Makefile (apache#16327)
Browse files Browse the repository at this point in the history
* updating makefile

* Update Makefile
  • Loading branch information
hughhhh committed Aug 20, 2021
1 parent 28287cd commit 5e21b88
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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

0 comments on commit 5e21b88

Please sign in to comment.