Skip to content

Commit

Permalink
Update local dev server guide in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Robadob committed Dec 12, 2023
1 parent 7e7fb51 commit 5253f79
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# Building the Site Locally

## Setup

```r
# Setup mirrors
options(repos = c(
carpentries = "https://carpentries.r-universe.dev/",
CRAN = "https://cran.rstudio.com/"
))
# Setup install from github
install.packages("devtools")
library(devtools)
# Install Uni of Shef Varnish theme
install_github("RSE-Sheffield/uos-varnish")
# Install remaining official carpentries packages
install.packages(c("sandpaper", "tinkr", "pegboard"))
```
## Development Server

```r
sandpaper::serve()
```

--------------

# The Carpentries Workbench Template Markdown Lesson

This lesson is a template lesson that uses [The Carpentries Workbench][workbench].
Expand Down

0 comments on commit 5253f79

Please sign in to comment.