knitr::opts_chunk$set( comment = "##", error = TRUE, tidy = FALSE, fig.width = 8, fig.height = 8)
This package loads the variables defined in the .env
file
in the current working directory (as reported by getwd()
),
and sets them as environment variables.
This happens automatically when the dotenv
package is loaded,
so the typical use-case is to just put a library(dotenv)
call at the
beginning of your R script.
Alternatively a dotenv::load_dot_env()
call can be used
to load variables from arbitrary files.
install.packages("dotenv")
You can simply put
library(dotenv)
at the beginning of your script, to load the environment variables defined
in .env
in the current working directory.
The .env
file is parsed line by line, and line is expected
to have one of the following formats:
VARIABLE=value VARIABLE2="quoted value" VARIABLE3='another quoted variable' # Comment line export EXPORTED="exported variable" export EXPORTED2=another
In more details:
export
is ignored, to keep the file
compatible with Unix shells.#
, without any leading
whitespace. You cannot mix variable definitions and
comments in the same line.It is suggested to keep the file in a form that is parsed the
same way with dotenv
and bash
(or other shells).
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.