Fileserver

Installing python packages

From the docker container terminal inside /app.

View available updates:

pipenv update --outdated

Install a package:

pipenv install <package>

Install a dev package:

pipenv install --dev <package>

Update a package:

pipenv update <package>

Running tests

From the docker container terminal inside /app.

pytest --asyncio-mode=auto

Auto Code Linting

From the docker container terminal inside /app.

black .
isort .
autoflake --in-place --recursive --remove-unused-variables .