This is the website repo for viash.io.
Quarto, R 4.2 and Python 3.10.
# clone the repo
[email protected]:viash-io/website.git
cd website
# Install R and Python dependency packages
Rscript -e 'renv::restore()'
source renv/python/virtualenvs/renv-python-3.10/bin/activate
quarto preview
Navigate to http://localhost:8000 in a web browser
install.packages("renv")
renv::init()
renv::use_python()
source renv/python/virtualenvs/renv-python-3.10/bin/activate
install.packages(c("reticulate", "languageserver", "rmarkdown"))
reticulate::py_install(c("pandas", "GitPython", "jupyter", "nbformat"))
renv::snapshot()