pixi can be installed on a *nix system using the following command:
curl -fsSL https://pixi.sh/install.sh | shWe can then run Dyno's web server using:
pixi run solaraFor development (including documentation and unit tests), pixi provides a set of pre-configured tasks.
To run mkdocs:
pixi run docsTo run unit and coverage tests:
pixi run test
pixi run covFinally, types can be checked with mypy:
pixi run typecheck