ktmud edited a comment on pull request #10847:
URL:
https://github.com/apache/incubator-superset/pull/10847#issuecomment-691335072
What I normally do is to change Superset's running port instead. I have the
following two commands in `.vscode/tasks.json`:
```
{
"label": "Flask Tests (8081)",
"type": "shell",
"command": "source activate superset && cd ${workspaceFolder} &&
ENABLE_REACT_CRUD_VIEWS=true SUPERSET_CONFIG=tests.superset_test_config
SUPERSET__SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://superset:[email protected]:5432/superset_test
flask run -p 8081 --no-debugger"
},
{
"label": "Flask Tests (8088)",
"type": "shell",
"command": "source activate superset && cd ${workspaceFolder} &&
ENABLE_REACT_CRUD_VIEWS=true SUPERSET_CONFIG=tests.superset_test_config
SUPERSET__SQLALCHEMY_DATABASE_URI=postgresql+psycopg2://superset:[email protected]:5432/superset_test
flask run -p 8088 --no-debugger"
},
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]