An RMarkdown-based website rendered using GitHub Actions
https://statomics.github.io/Rmd-website/
- Create a new repository on GitHub based on this template (press the big green button "Use this template")
- Clone the repository locally
- Add content in R Markdown format
- Commit changes and push to GitHub
- The website will be deployed at
https://<username>.github.io/<repo-name>/
This project uses renv to maintain a consistent environment of R packages. For the full documentation, see https://rstudio.github.io/renv.
Briefly:
- Install necessary packages with
renv::install()
and use them somewhere in the project as usual - Call
renv::snapshot()
to save the state of the project library to the lockfile (calledrenv.lock
) - Continue working on your project, installing and updating R packages as needed
- Call
renv::snapshot()
again to save the state of your project library if your attempts to update R packages were successful, or callrenv::restore()
to revert to the previous state as encoded in the lockfile if your attempts to update packages introduced some new problems
- https://github.com/r-lib/actions#where-to-find-help
- For open questions, suggestions, ideas,...: use GitHub discussions
- For technical issues: post an issue