feat: Add new dev commands to Makefile (#16327)

* updating makefile

* Update Makefile
This commit is contained in:
Hugh A. Miles II 2021-08-20 12:31:21 -04:00 committed by GitHub
parent 575ee24a99
commit ea803c3d1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

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