You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install R and Quarto (check the [github action](.github/workflows/quarto_render.yml) to see which version you need).
6
+
7
+
Install renv:
8
+
9
+
```bash
10
+
R -e 'install.packages(c("renv", "yaml"))'
11
+
```
12
+
13
+
Install R dependencies:
14
+
15
+
```bash
16
+
R -e 'renv::restore()'
17
+
```
18
+
19
+
If restoring the R dependencies consistently fails, we might need to re-initialise the renv lock file:
20
+
21
+
```bash
22
+
rm renv.lock
23
+
R -e 'renv::install()'
24
+
```
25
+
26
+
## Build
27
+
28
+
The documentation is currently being built by the CI and is published in the [`render/main`](https://github.com/openproblems-bio/docs/tree/render/main) branch.
0 commit comments