Salim

Results 2 comments of Salim

Hi @vvalvezan I'm using a library called [flask-script](https://flask-script.readthedocs.io/en/latest/) to build the ```manage.py``` executable. As you can see from their documentation, the Manager class comes with default commands, including ```runserver```. https://flask-script.readthedocs.io/en/latest/...

FYI, installing a python package using `--config-settings editable_mode=compat` or `--config-settings editable_mode=strict` is a workaround for fixing unresolved reference issues for editable packages when using Pycharm. See [this comment](https://youtrack.jetbrains.com/issue/PY-976/Unresolved-references-to-editable-packages-pip-install-e-after-installing-before-restart-due-to-.egg-link-and-new-entries-in#focus=Comments-27-7867417.0-0) on [PY-976](https://youtrack.jetbrains.com/issue/PY-976/Unresolved-references-to-editable-packages-pip-install-e-after-installing-before-restart-due-to-.egg-link-and-new-entries-in)...