Get the configuration parameters for the lesson
Examples
tmp <- tempfile()
create_lesson(tmp)
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> ℹ No schedule set, using Rmd files in episodes/ directory.
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> → To remove this message, define your schedule in config.yaml or use `set_episodes()` to generate it.
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> ────────────────────────────────────────────────────────────────────────
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> ℹ To save this configuration, use
#>
#> set_episodes(path = path, order = ep, write = TRUE)
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> ✔ First episode created in /tmp/RtmpsPBux1/file1a887dbb06e5/episodes/introduction.Rmd
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> ℹ Workflows up-to-date!
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> ℹ Consent to use package cache provided
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> → Searching for and installing available dependencies
#> * Discovering package dependencies ... Done!
#> * Copying packages into the library ... Done!
#> → Recording changes in lockfile
#> The version of R recorded in the lockfile will be updated:
#> - R [*] -> [4.2.2]
#>
#> The following package(s) will be updated in the lockfile:
#>
#> # RSPM ===============================
#> - R6 [* -> 2.5.1]
#> - base64enc [* -> 0.1-3]
#> - bslib [* -> 0.4.2]
#> - cachem [* -> 1.0.6]
#> - cli [* -> 3.6.0]
#> - digest [* -> 0.6.31]
#> - ellipsis [* -> 0.3.2]
#> - evaluate [* -> 0.20]
#> - fastmap [* -> 1.1.0]
#> - fs [* -> 1.6.0]
#> - glue [* -> 1.6.2]
#> - highr [* -> 0.10]
#> - htmltools [* -> 0.5.4]
#> - jquerylib [* -> 0.1.4]
#> - jsonlite [* -> 1.8.4]
#> - knitr [* -> 1.42]
#> - lifecycle [* -> 1.0.3]
#> - magrittr [* -> 2.0.3]
#> - memoise [* -> 2.0.1]
#> - mime [* -> 0.12]
#> - rappdirs [* -> 0.3.3]
#> - renv [* -> 0.16.0]
#> - rlang [* -> 1.0.6]
#> - rmarkdown [* -> 2.20]
#> - sass [* -> 0.4.5]
#> - stringi [* -> 1.7.12]
#> - stringr [* -> 1.5.0]
#> - tinytex [* -> 0.43]
#> - vctrs [* -> 0.5.2]
#> - xfun [* -> 0.36]
#> - yaml [* -> 2.3.7]
#>
#> * Lockfile written to '/tmp/RtmpsPBux1/file1a887dbb06e5/renv/profiles/lesson-requirements/renv.lock'.
#> ✔ Lesson successfully created in /tmp/RtmpsPBux1/file1a887dbb06e5
#> → Creating Lesson in /tmp/RtmpsPBux1/file1a887dbb06e5...
#> /tmp/RtmpsPBux1/file1a887dbb06e5
get_config(tmp)
#> $carpentry
#> [1] "incubator"
#>
#> $title
#> [1] "Lesson Title"
#>
#> $created
#> NULL
#>
#> $keywords
#> [1] "software, data, lesson, The Carpentries"
#>
#> $life_cycle
#> [1] "pre-alpha"
#>
#> $license
#> [1] "CC-BY 4.0"
#>
#> $source
#> [1] "https://github.com/carpentries/file1a887dbb06e5"
#>
#> $branch
#> [1] "main"
#>
#> $contact
#> [1] "team@carpentries.org"
#>
#> $episodes
#> [1] "introduction.Rmd"
#>
#> $learners
#> NULL
#>
#> $instructors
#> NULL
#>
#> $profiles
#> NULL
#>