RStudio in Coder #23477
Answered
by
mtojek
joergklein
asked this question in
General
RStudio in Coder
#23477
|
I want to use RStudio in Coder. Unfortunately, I don't know how to insert the template into Coder. There is a module for RStudio. How do I create a working template? Ich have a VPs. Coder can only be accessed via a web browser. A pdf viewer is needed. |
Answered by
mtojek
Mar 25, 2026
Replies: 2 comments 2 replies
|
You create a Coder template that pulls the rstudioβserver module from the registry and then expose its UI. In your repo add a file like modules:
- source: github.com/coder/registry/rstudio-server
version: v0.4.0 # pin to a release or use latest
inputs:
# optional: set R version, add extra packages, etc.
r_version: "4.4.0"
extra_r_packages: ["tidyverse", "shiny"]
# if you need a PDF viewer inside the workspace, add it via packages:
packages: ["evince"] # or okular, xpdf, etc.
# optional: adjust resources if you expect heavy R workloads
resources:
cpu |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I believe you need to add a Coder module definition to your template. If you scroll down the module README file, you'll find a snippet.
Cheers!