Quickstart • Project structure • Join the community • License • Code of conduct • References
This repository is contains some basic session algorithms that run on the vantage6 platform. For more information on how to use vantage6, please visit the vantage6 website.
The base code for this algorithm has been created via the v6-algorithm-template template generator.
Build and (optionally) push the algorithm image:
make image TAG=latest VANTAGE6_VERSION=5.0.0
# add PUSH_REG=true to also push
The Dockerfile installs dependencies with uv using the lockfile for reproducibility and then installs the project.
Local setup using uv:
# Create/refresh virtualenv and install deps from pyproject/uv.lock
uv sync
# Run the package (example: list available functions or run tests)
# if you want to add a dependency## Developing