View the render of the report here: https://dkubek.github.io/visual-search-experiment/
Firstly, you need to have poetry installed.
curl -sSL https://install.python-poetry.org | python3 -
Then setup the environment by running
poetry install
Finally, enter the environment with
poetry shell
Install dvc
with ssh support (the dev
group in the poetry environment
already lists it as a dependency).
Run this command if password login is mandatory.
dvc remote modify <myremote> ask_password true
Firstly, install Quarto and
enter the poetry environment with all dependencies installed (publish
group
is sufficient).
To generate an html report run
quarto render visual_search_experiment.qmd --to html
To generate a pdf run
quarto render visual_search_experiment.qmd --to pdf
The output of these commands will be stored in output/
.
Enter the poetry
environment.
Locally run
quarto publish gh-pages
this will render the report and push the output to branch gh-pages
.