-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSETUP.qmd
48 lines (33 loc) · 875 Bytes
/
SETUP.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
format:
html:
code-fold: false
include-after-body:
text: |
<script src='/assets/js/site.js'></script>
<script src='/assets/js/non-posts.js'></script>
css: [/assets/css/non-posts.css]
---
# Quarto Site Environment Setup
Here's all the setup.
## Quarto
Setup [quarto-shims](https://github.com/prncevince/quarto-shims).
Then, run below to install & setup quarto. `wget` is required in your shell environment, can be installed on Mac via homebrew.
```sh
./utils/download-quarto.sh
```
## R
Setup [r-shims](https://github.com/prncevince/r-shims).
Create RStudio project within RStudio.
```{r}
#| eval: false
rstudioapi::initializeProject()
```
Initialize the `{renv}` environment. Important packages can be discovered in [utils/deps.R](utils/deps.R).
```{r}
#| eval: false
renv::init()
```
## Start
Explode on paper.
## Fin