Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 616 Bytes

File metadata and controls

33 lines (25 loc) · 616 Bytes

dyno.py

Setup

Using pixi (production and development environment)

pixi can be installed on a *nix system using the following command:

curl -fsSL https://pixi.sh/install.sh | sh

We can then run Dyno's web server using:

pixi run solara

For development (including documentation and unit tests), pixi provides a set of pre-configured tasks.

To run mkdocs:

pixi run docs

To run unit and coverage tests:

pixi run test
pixi run cov

Finally, types can be checked with mypy:

pixi run typecheck