Refer to the Fellowship LMS for information!
You can install Poetry by running the following. This command assumes you have Python installed. Substitute python
to python3
if necessary. More detailed instructions can be found here.
curl -sSL https://install.python-poetry.org | python -
Once Poetry is installed, you can install the dependencies for this project by running the following.
poetry install
Here are a lists of development commands.
You can add dependencies by running the following. Changes will be reflected in pyproject.toml and poetry.lock.
poetry add <package>
You can remove dependencies by running the following. Changes will be reflected in pyproject.toml and poetry.lock.
poetry remove <package>
flask run
pytest test_pytest.py
pylint *.py
pyright